示例#1
0
    void MainWindow::showMigrateAccountPage(QString accountId)
    {
#ifdef __APPLE__
        MacMigrationManager * manager = new MacMigrationManager(accountId);

        if (manager->getProfiles().size() == 1)
        {
            manager->migrateProfile(manager->getProfiles()[0]);
            showMainPage();
        }
        else
        {
            if (!accounts_page_)
            {
                accounts_page_ = new AccountsPage(this, manager);
                stacked_widget_->addWidget(accounts_page_);

                connect(accounts_page_, SIGNAL(account_selected()), this, SLOT(showMainPage()), Qt::QueuedConnection);
            }

            stacked_widget_->setCurrentWidget(accounts_page_);

            clear_global_objects();
        }

        delete manager;
#endif
    }
示例#2
0
 void AccountsPage::skipClicked(bool /*_checked*/)
 {
     bool found = false;
     for (auto account : profiles_)
     {
         if (account.selected() &&
             account.type() != MacProfileType::ICQ)
         {
             manager_->loginProfile(account, MacProfile());
             found = true;
             break;
         }
     }
     
     if (!found)
     {
         MacProfilesList tmp;
         for (auto a : profiles_)
         {
             if (tmp.isEmpty() || tmp.back().type() == a.type())
                 tmp.push_back(a);
         }
         
         if (tmp.size() == 1)
         {
             manager_->loginProfile(tmp.back(), MacProfile());
             emit account_selected();
             return;
         }
         
         Ui::get_gui_settings()->set_value<bool>(settings_mac_accounts_migrated, true);
         
         auto w = Utils::InterConnector::instance().getMainWindow();
         if (w)
             w->showLoginPage(false);
         
         return;
     }
     
     emit account_selected();
 }
示例#3
0
 void AccountsPage::store_accounts_and_exit()
 {
     bool isFirst = true;
     MacProfile main, slave;
     
     for (auto account : profiles_)
     {
         if (account.selected())
         {
             if (isFirst)
             {
                 main = account;
                 isFirst = false;
             }
             else
             {
                 slave = account;
                 break;
             }
         }
     }
     
     if (!main.uin().isEmpty() && slave.uin().isEmpty())
     {
         MacProfilesList tmp;
         for (auto a : profiles_)
         {
             if (a.type() != main.type())
                 tmp.push_back(a);
         }
         
         if (tmp.size() == 1)
             slave = tmp.front();
     }
     
     if (!isFirst)
         manager_->loginProfile(main, slave);
     
     emit account_selected();
 }
示例#4
0
    void AccountsPage::summon()
    {
        if (build::is_icq()) {
            setStyleSheet(Utils::LoadStyle(":/qss/accounts_page"));
            
            QVBoxLayout* verticalLayout = new QVBoxLayout(this);
            verticalLayout->setSpacing(0);
            verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
            verticalLayout->setContentsMargins(0, 0, 0, 0);
            
            QWidget* main_widget = new QWidget(this);
            main_widget->setObjectName(QStringLiteral("main_widget"));
            QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Expanding);
            sizePolicy.setHorizontalStretch(0);
            sizePolicy.setVerticalStretch(0);
            sizePolicy.setHeightForWidth(main_widget->sizePolicy().hasHeightForWidth());
            main_widget->setSizePolicy(sizePolicy);
            QHBoxLayout* main_layout = new QHBoxLayout(main_widget);
            main_layout->setSpacing(0);
            main_layout->setObjectName(QStringLiteral("main_layout"));
            main_layout->setContentsMargins(0, 0, 0, 0);
            
            QWidget* controls_widget = new QWidget(main_widget);
            controls_widget->setObjectName(QStringLiteral("controls_widget"));
            QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Minimum);
            sizePolicy1.setHorizontalStretch(0);
            sizePolicy1.setVerticalStretch(0);
            sizePolicy1.setHeightForWidth(controls_widget->sizePolicy().hasHeightForWidth());
            controls_widget->setSizePolicy(sizePolicy1);
            controls_widget->setFixedWidth(500);
            QVBoxLayout* controls_layout = new QVBoxLayout(controls_widget);
            controls_layout->setSpacing(0);
            controls_layout->setObjectName(QStringLiteral("controls_layout"));
            controls_layout->setContentsMargins(0, 0, 0, 0);
            
            controls_layout->addSpacing(Utils::scale_value(50));
            
            PictureWidget* logo_widget = new PictureWidget(controls_widget, ":/resources/main_window/content_logo_100.png");
            logo_widget->setFixedHeight(Utils::scale_value(80));
            logo_widget->setFixedWidth(Utils::scale_value(80));
            controls_layout->addWidget(logo_widget);
            controls_layout->setAlignment(logo_widget, Qt::AlignHCenter);
            
            QLabel* welcome_label = new QLabel(controls_widget);
            welcome_label->setObjectName(QStringLiteral("welcome_label"));
            welcome_label->setAlignment(Qt::AlignCenter);
            welcome_label->setProperty("WelcomeTitle", QVariant(true));
            welcome_label->setText(build::is_icq() ?
                                   QT_TRANSLATE_NOOP("login_page","Welcome to ICQ") :
                                   QT_TRANSLATE_NOOP("login_page","Welcome to Mail.Ru Agent"));
            
            controls_layout->addWidget(welcome_label);
            
            QLabel* label_choose_comment = new QLabel(main_widget);
            label_choose_comment->setObjectName("choose_account_comment_label");
            label_choose_comment->setText(QT_TRANSLATE_NOOP("merge_accounts", "Now Mail.Ru Agent supports only one account. You can merge it with ICQ one."));
            label_choose_comment->setWordWrap(true);
            label_choose_comment->setAlignment(Qt::AlignHCenter | Qt::AlignTop);
            controls_layout->addWidget(label_choose_comment);

            controls_layout->addSpacing(Utils::scale_value(24));
            
            QScrollArea* accounts_area = new QScrollArea(main_widget);
            QWidget* accounts_area_widget = new QWidget(main_widget);
            accounts_area_widget->setObjectName("accounts_area_widget");
            accounts_area->setWidget(accounts_area_widget);
            accounts_area->setWidgetResizable(true);
            accounts_area->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
            
            QVBoxLayout* accounts_layout = new QVBoxLayout();
            accounts_layout->setSpacing(0);
            accounts_layout->setContentsMargins(0, 0, 0, 0);
            accounts_layout->setAlignment(Qt::AlignTop);

            accounts_area_widget->setLayout(accounts_layout);
            controls_layout->addWidget(accounts_area);
            
            controls_layout->addSpacing(Utils::scale_value(24));

            class Skipper: public QPushButton
            {
            private:
                const MacProfile *profile_;
                
            public:
                explicit Skipper(QWidget *parent = nullptr): QPushButton(parent) { ; }
                void setProfile(const MacProfile &profile) { profile_ = &profile; }
                const MacProfile *const profile() const { return profile_; }
            }
            *label_choose = new Skipper(main_widget);
            label_choose->setObjectName("choose_account_button");
            label_choose->setText(QT_TRANSLATE_NOOP("merge_accounts", "Choose Mail.Ru Agent account"));
            label_choose->setFlat(true);
            label_choose->setEnabled(false);
            controls_layout->addWidget(label_choose);

            // Accounts work
            {
                auto enumerator = [this](MacProfilesList &accounts,
                                                  const MacProfileType &possible,
                                                  QWidget *list,
                                                  QVBoxLayout *layout,
                                                  std::function<void(const MacProfile &)> listener)
                {
                    std::vector<account_widget *> widgets;
                    return widgets;
                };

                std::map<MacProfileType, std::vector<int>> types;
                for (int i = 0, iend = profiles_.size(); i < iend; ++i)
                {
                    types[profiles_[i].type()].push_back(i);
                }
                if (types.size() == 1 || types[MacProfileType::ICQ].size() == 1)
                {
                    manager_->loginProfile(profiles_[types[MacProfileType::ICQ].front()], MacProfile());
                    emit account_selected();
                }
                else if (types[MacProfileType::ICQ].size() > 1)
                {
                    label_choose_comment->setText(QT_TRANSLATE_NOOP("merge_accounts", "Choose ICQ account"));
                }
            }
            
            controls_layout->addSpacing(Utils::scale_value(50));
            
            main_layout->addWidget(controls_widget);
            
            verticalLayout->addWidget(main_widget);
        } else {
            setStyleSheet(Utils::LoadStyle(":/qss/accounts_page_agent"));
            
            for (auto account : profiles_)
            {
                if (account.type() == MacProfileType::ICQ)
                    ++icq_accounts_count_;
                else if (account.type() == MacProfileType::Agent)
                    ++agent_accounts_count_;
            }
            
            root_layout_ = new QVBoxLayout(this);
            {
                setObjectName("choose_account_page");
                root_layout_->setSpacing(0);
                root_layout_->setContentsMargins(Utils::scale_value(72), Utils::scale_value(32), Utils::scale_value(72), Utils::scale_value(16));
                root_layout_->setAlignment(Qt::AlignTop);
                
                QLabel* label_choose = new QLabel(this);
                label_choose->setObjectName("choose_account_label");
                label_choose->setText(QT_TRANSLATE_NOOP("merge_accounts", "Account settings"));
                label_choose->setAlignment(Qt::AlignHCenter | Qt::AlignTop);
                root_layout_->addWidget(label_choose);
                
                root_layout_->addSpacing(Utils::scale_value(16));
                
                QLabel* label_choose_comment = new QLabel(this);
                label_choose_comment->setObjectName("choose_account_comment_label");
                label_choose_comment->setText(QT_TRANSLATE_NOOP("merge_accounts", "Now Mail.Ru Agent supports only one account. You can merge it with ICQ one."));
                label_choose_comment->setWordWrap(true);
                label_choose_comment->setAlignment(Qt::AlignHCenter | Qt::AlignTop);
                root_layout_->addWidget(label_choose_comment);
                
                root_layout_->addSpacing(Utils::scale_value(12));
                
                QHBoxLayout* pagesLayout = new QHBoxLayout();
                
                pagesLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum));
                
                agentPageIcon_ = new QWidget(this);
                agentPageIcon_->setObjectName("agent_page_icon");
                agentPageIcon_->setProperty("state", "normal");
                agentPageIcon_->setFixedSize(Utils::scale_value(12), Utils::scale_value(12));
                pagesLayout->addWidget(agentPageIcon_);
                
                pagesLayout->addSpacing(Utils::scale_value(4));
                
                agentPageText_ = new QLabel(this);
                agentPageText_->setObjectName("agent_page_text");
                agentPageText_->setText(icq_accounts_count_ > 1 ? QT_TRANSLATE_NOOP("merge_accounts", "Mail.Ru Agent") : QT_TRANSLATE_NOOP("merge_accounts", "Choose Mail.Ru Agent account"));
                agentPageText_->setProperty("state", "normal");
                pagesLayout->addWidget(agentPageText_);
                
                pagesLayout->addSpacing(Utils::scale_value(20));
                
                icqPageIcon_ = new QWidget(this);
                icqPageIcon_->setObjectName("icq_page_icon");
                icqPageIcon_->setProperty("state", "normal");
                icqPageIcon_->setFixedSize(Utils::scale_value(12), Utils::scale_value(12));
                pagesLayout->addWidget(icqPageIcon_);
                
                pagesLayout->addSpacing(Utils::scale_value(4));
                
                icqPageText_ = new QLabel(this);
                icqPageText_->setObjectName("icq_page_text");
                icqPageText_->setText(agent_accounts_count_ > 1 ? QT_TRANSLATE_NOOP("merge_accounts", "ICQ") : QT_TRANSLATE_NOOP("merge_accounts", "Choose ICQ account"));
                icqPageText_->setProperty("state", "normal");
                pagesLayout->addWidget(icqPageText_);
                
                pagesLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum));
                
                root_layout_->addLayout(pagesLayout);
                
                root_layout_->addSpacing(Utils::scale_value(12));
                
                accounts_area_ = new QScrollArea(this);
                accounts_area_widget_ = new QWidget(this);
                accounts_area_widget_->setObjectName("accounts_area_widget");
                accounts_area_->setWidget(accounts_area_widget_);
                accounts_area_->setWidgetResizable(true);
                accounts_area_->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
                
                accounts_layout_ = new QVBoxLayout();
                accounts_layout_->setSpacing(0);
                accounts_layout_->setContentsMargins(0, 0, 0, 0);
                accounts_layout_->setAlignment(Qt::AlignTop);
                
                accounts_area_widget_->setLayout(accounts_layout_);
                
                root_layout_->addWidget(accounts_area_);
                
                root_layout_->addSpacing(Utils::scale_value(16));
                
                buttonLayout_ = new QHBoxLayout();
                buttonLayout_->setSpacing(Utils::scale_value(20));
                buttonLayout_->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum));
                
                button_prev_ = new QPushButton(this);
                button_prev_->setContentsMargins(40, 0, 40, 0);
                button_prev_->setFixedHeight(Utils::scale_value(40));
                button_prev_->setFixedWidth(Utils::scale_value(120));
                button_prev_->setObjectName("frame_button");
                button_prev_->setText(QT_TRANSLATE_NOOP("merge_accounts", "Back"));
                button_prev_->setCursor(QCursor(Qt::PointingHandCursor));
                buttonLayout_->addWidget(button_prev_);
                connect(button_prev_, &QPushButton::clicked, this, &AccountsPage::prevClicked);
                
                button_next_ = new QPushButton(this);
                button_next_->setContentsMargins(40, 0, 40, 0);
                button_next_->setFixedHeight(Utils::scale_value(40));
                button_next_->setFixedWidth(Utils::scale_value(120));
                button_next_->setObjectName("custom_button");
                button_next_->setText(QT_TRANSLATE_NOOP("merge_accounts", "Next"));
                button_next_->setCursor(QCursor(Qt::PointingHandCursor));
                buttonLayout_->addWidget(button_next_);
                connect(button_next_, &QPushButton::clicked, this, &AccountsPage::nextClicked);
                
                buttonLayout_->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum));
                
                root_layout_->addLayout(buttonLayout_);
                
                buttonSkip_ = new QPushButton(this);
                buttonSkip_->setText(QT_TRANSLATE_NOOP("merge_accounts", "Skip"));
                buttonSkip_->setCursor(QCursor(Qt::PointingHandCursor));
                buttonSkip_->setObjectName("skip_button");
                buttonSkip_->setVisible(false);
                root_layout_->addWidget(buttonSkip_);
                connect(buttonSkip_, &QPushButton::clicked, this, &AccountsPage::skipClicked);
                
                init_with_step(agent_accounts_count_ > 1 ? 1 : 2);
            }
            setLayout(root_layout_);
        }
    }