mirror of
https://github.com/iDescriptor/iDescriptor.git
synced 2026-06-22 03:45:51 +08:00
add initial recovery device support for new UI & update styling
- Added QStackedWidget to manage different states in InstalledAppsWidget. - Created separate loading, error, and content widgets for better UI management. - Updated LoginDialog title and adjusted styles for labels. - Enhanced MainWindow by removing unused code and improving device handling. - Updated QueryMobileGestaltWidget UI for better clarity and usability. - Removed deprecated screenshot handling code in RealtimeScreen.
This commit is contained in:
@@ -54,10 +54,6 @@ void AppsWidget::setupUI()
|
||||
QHBoxLayout *headerLayout = new QHBoxLayout(headerWidget);
|
||||
headerLayout->setContentsMargins(20, 10, 20, 10);
|
||||
|
||||
QLabel *titleLabel = new QLabel("App Store");
|
||||
titleLabel->setStyleSheet(
|
||||
"font-size: 24px; font-weight: bold; color: #333;");
|
||||
|
||||
// Create status label first
|
||||
m_statusLabel = new QLabel("Not signed in");
|
||||
m_statusLabel->setStyleSheet("margin-right: 20px;");
|
||||
@@ -97,9 +93,6 @@ void AppsWidget::setupUI()
|
||||
connect(searchAction, &QAction::triggered, this,
|
||||
&AppsWidget::performSearch);
|
||||
|
||||
headerLayout->addWidget(titleLabel);
|
||||
|
||||
headerLayout->addStretch();
|
||||
headerLayout->addWidget(m_searchEdit);
|
||||
headerLayout->addStretch();
|
||||
headerLayout->addWidget(m_statusLabel);
|
||||
|
||||
Reference in New Issue
Block a user