Some work on "add item" interface menus.
This commit is contained in:
parent
779f42f5dd
commit
c3384af89e
@ -63,8 +63,6 @@ FeedsModel::FeedsModel(QObject *parent)
|
|||||||
connect(m_autoUpdateTimer, SIGNAL(timeout()), this, SLOT(executeNextAutoUpdate()));
|
connect(m_autoUpdateTimer, SIGNAL(timeout()), this, SLOT(executeNextAutoUpdate()));
|
||||||
|
|
||||||
loadActivatedServiceAccounts();
|
loadActivatedServiceAccounts();
|
||||||
|
|
||||||
// Setup the timer.
|
|
||||||
updateAutoUpdateStatus();
|
updateAutoUpdateStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
#include "gui/dialogs/formbackupdatabasesettings.h"
|
#include "gui/dialogs/formbackupdatabasesettings.h"
|
||||||
#include "gui/dialogs/formrestoredatabasesettings.h"
|
#include "gui/dialogs/formrestoredatabasesettings.h"
|
||||||
#include "gui/notifications/notification.h"
|
#include "gui/notifications/notification.h"
|
||||||
|
#include "services/abstract/serviceroot.h"
|
||||||
#include "services/standard/gui/formstandardimportexport.h"
|
#include "services/standard/gui/formstandardimportexport.h"
|
||||||
|
|
||||||
#include <QCloseEvent>
|
#include <QCloseEvent>
|
||||||
@ -171,6 +172,37 @@ void FormMain::switchMainMenu() {
|
|||||||
m_ui->m_menuBar->setVisible(m_ui->m_actionSwitchMainMenu->isChecked());
|
m_ui->m_menuBar->setVisible(m_ui->m_actionSwitchMainMenu->isChecked());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void FormMain::updateAddItemMenu() {
|
||||||
|
// TODO: clear nevymaže z paměti. - edit, stačí nastavit parent na to menu
|
||||||
|
// a při clear to i vymaže z paměti.
|
||||||
|
m_ui->m_menuAddItem->clear();
|
||||||
|
|
||||||
|
foreach (ServiceRoot *activated_root, tabWidget()->feedMessageViewer()->feedsView()->sourceModel()->serviceRoots()) {
|
||||||
|
QMenu *root_menu = new QMenu(activated_root->title(), m_ui->m_menuAddItem);
|
||||||
|
QList<QAction*> root_actions = activated_root->specificAddItemActions();
|
||||||
|
|
||||||
|
root_menu->setIcon(activated_root->icon());
|
||||||
|
root_menu->setToolTip(activated_root->description());
|
||||||
|
|
||||||
|
if (root_actions.isEmpty()) {
|
||||||
|
QAction *no_action = new QAction(qApp->icons()->fromTheme(QSL("dialog-error")),
|
||||||
|
tr("No possible actions"),
|
||||||
|
m_ui->m_menuAddItem);
|
||||||
|
no_action->setEnabled(false);
|
||||||
|
root_menu->addAction(no_action);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
foreach (QAction *action, root_actions) {
|
||||||
|
action->setParent(root_menu);
|
||||||
|
}
|
||||||
|
|
||||||
|
root_menu->addActions(root_actions);
|
||||||
|
}
|
||||||
|
|
||||||
|
m_ui->m_menuAddItem->addMenu(root_menu);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void FormMain::switchVisibility(bool force_hide) {
|
void FormMain::switchVisibility(bool force_hide) {
|
||||||
if (force_hide || isVisible()) {
|
if (force_hide || isVisible()) {
|
||||||
if (SystemTrayIcon::isSystemTrayActivated()) {
|
if (SystemTrayIcon::isSystemTrayActivated()) {
|
||||||
@ -335,6 +367,8 @@ void FormMain::createConnections() {
|
|||||||
connect(m_statusBar->fullscreenSwitcher(), SIGNAL(toggled(bool)), m_ui->m_actionFullscreen, SLOT(setChecked(bool)));
|
connect(m_statusBar->fullscreenSwitcher(), SIGNAL(toggled(bool)), m_ui->m_actionFullscreen, SLOT(setChecked(bool)));
|
||||||
connect(m_ui->m_actionFullscreen, SIGNAL(toggled(bool)), m_statusBar->fullscreenSwitcher(), SLOT(setChecked(bool)));
|
connect(m_ui->m_actionFullscreen, SIGNAL(toggled(bool)), m_statusBar->fullscreenSwitcher(), SLOT(setChecked(bool)));
|
||||||
|
|
||||||
|
connect(m_ui->m_menuAddItem, SIGNAL(aboutToShow()), this, SLOT(updateAddItemMenu()));
|
||||||
|
|
||||||
// Menu "File" connections.
|
// Menu "File" connections.
|
||||||
connect(m_ui->m_actionExportFeeds, SIGNAL(triggered()), this, SLOT(exportFeeds()));
|
connect(m_ui->m_actionExportFeeds, SIGNAL(triggered()), this, SLOT(exportFeeds()));
|
||||||
connect(m_ui->m_actionImportFeeds, SIGNAL(triggered()), this, SLOT(importFeeds()));
|
connect(m_ui->m_actionImportFeeds, SIGNAL(triggered()), this, SLOT(importFeeds()));
|
||||||
@ -395,7 +429,6 @@ void FormMain::loadWebBrowserMenu(int index) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void FormMain::exportFeeds() {
|
void FormMain::exportFeeds() {
|
||||||
// TODO: crash
|
|
||||||
QPointer<FormStandardImportExport> form = new FormStandardImportExport(tabWidget()->feedMessageViewer()->feedsView()->sourceModel()->standardServiceRoot(),
|
QPointer<FormStandardImportExport> form = new FormStandardImportExport(tabWidget()->feedMessageViewer()->feedsView()->sourceModel()->standardServiceRoot(),
|
||||||
this);
|
this);
|
||||||
form.data()->setMode(FeedsImportExportModel::Export);
|
form.data()->setMode(FeedsImportExportModel::Export);
|
||||||
@ -404,7 +437,6 @@ void FormMain::exportFeeds() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void FormMain::importFeeds() {
|
void FormMain::importFeeds() {
|
||||||
// TODO: crash
|
|
||||||
QPointer<FormStandardImportExport> form = new FormStandardImportExport(tabWidget()->feedMessageViewer()->feedsView()->sourceModel()->standardServiceRoot(),
|
QPointer<FormStandardImportExport> form = new FormStandardImportExport(tabWidget()->feedMessageViewer()->feedsView()->sourceModel()->standardServiceRoot(),
|
||||||
this);
|
this);
|
||||||
form.data()->setMode(FeedsImportExportModel::Import);
|
form.data()->setMode(FeedsImportExportModel::Import);
|
||||||
|
@ -78,6 +78,8 @@ class FormMain : public QMainWindow {
|
|||||||
void switchMainMenu();
|
void switchMainMenu();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
void updateAddItemMenu();
|
||||||
|
|
||||||
// Loads web browser menu if user selects to change tabs.
|
// Loads web browser menu if user selects to change tabs.
|
||||||
void loadWebBrowserMenu(int index);
|
void loadWebBrowserMenu(int index);
|
||||||
|
|
||||||
|
@ -488,6 +488,9 @@ void FeedsView::initializeContextMenuCategories(RootItem *clicked_item) {
|
|||||||
m_contextMenuCategories = new QMenu(tr("Context menu for categories"), this);
|
m_contextMenuCategories = new QMenu(tr("Context menu for categories"), this);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
||||||
|
// TODO: clear nevymaže z paměti.
|
||||||
|
// http://doc.qt.io/qt-4.8/qmenu.html#clear
|
||||||
m_contextMenuCategories->clear();
|
m_contextMenuCategories->clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -503,6 +506,11 @@ void FeedsView::initializeContextMenuCategories(RootItem *clicked_item) {
|
|||||||
|
|
||||||
if (!specific_actions.isEmpty()) {
|
if (!specific_actions.isEmpty()) {
|
||||||
m_contextMenuCategories->addSeparator();
|
m_contextMenuCategories->addSeparator();
|
||||||
|
|
||||||
|
foreach (QAction *action, specific_actions) {
|
||||||
|
action->setParent(m_contextMenuCategories);
|
||||||
|
}
|
||||||
|
|
||||||
m_contextMenuCategories->addActions(specific_actions);
|
m_contextMenuCategories->addActions(specific_actions);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -514,6 +522,8 @@ void FeedsView::initializeContextMenuFeeds(RootItem *clicked_item) {
|
|||||||
else {
|
else {
|
||||||
// FIXME: Položky jsou mazány při opětovném otevření kontextového nabíky ale je lepší je mazat
|
// FIXME: Položky jsou mazány při opětovném otevření kontextového nabíky ale je lepší je mazat
|
||||||
// hned při zavření kontextove nabíky.
|
// hned při zavření kontextove nabíky.
|
||||||
|
|
||||||
|
// TODO: clear nevymaže z paměti.
|
||||||
m_contextMenuFeeds->clear();
|
m_contextMenuFeeds->clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -529,6 +539,11 @@ void FeedsView::initializeContextMenuFeeds(RootItem *clicked_item) {
|
|||||||
|
|
||||||
if (!specific_actions.isEmpty()) {
|
if (!specific_actions.isEmpty()) {
|
||||||
m_contextMenuFeeds->addSeparator();
|
m_contextMenuFeeds->addSeparator();
|
||||||
|
|
||||||
|
foreach (QAction *action, specific_actions) {
|
||||||
|
action->setParent(m_contextMenuFeeds);
|
||||||
|
}
|
||||||
|
|
||||||
m_contextMenuFeeds->addActions(specific_actions);
|
m_contextMenuFeeds->addActions(specific_actions);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -100,7 +100,7 @@ int StandardFeed::countOfUnreadMessages() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
QList<QAction*> StandardFeed::specificContextMenuActions() {
|
QList<QAction*> StandardFeed::specificContextMenuActions() {
|
||||||
return serviceRoot()->getMenuForFeed(this);
|
return serviceRoot()->getContextMenuForFeed(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
StandardServiceRoot *StandardFeed::serviceRoot() {
|
StandardServiceRoot *StandardFeed::serviceRoot() {
|
||||||
|
@ -211,7 +211,7 @@ QHash<int,StandardCategory*> StandardServiceRoot::allCategories() {
|
|||||||
return categoriesForItem(this);
|
return categoriesForItem(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
QList<QAction*> StandardServiceRoot::getMenuForFeed(StandardFeed *feed) {
|
QList<QAction*> StandardServiceRoot::getContextMenuForFeed(StandardFeed *feed) {
|
||||||
QList<QAction*> list;
|
QList<QAction*> list;
|
||||||
|
|
||||||
// Fetch feed metadata.
|
// Fetch feed metadata.
|
||||||
|
@ -53,7 +53,8 @@ class StandardServiceRoot : public ServiceRoot {
|
|||||||
// consists of ID of parent item and pointer to category.
|
// consists of ID of parent item and pointer to category.
|
||||||
QHash<int,StandardCategory*> allCategories();
|
QHash<int,StandardCategory*> allCategories();
|
||||||
|
|
||||||
QList<QAction*> getMenuForFeed(StandardFeed *feed);
|
// Returns context specific menu actions for given feed.
|
||||||
|
QList<QAction*> getContextMenuForFeed(StandardFeed *feed);
|
||||||
|
|
||||||
// Access to standard recycle bin.
|
// Access to standard recycle bin.
|
||||||
StandardRecycleBin *recycleBin() const;
|
StandardRecycleBin *recycleBin() const;
|
||||||
@ -63,6 +64,7 @@ class StandardServiceRoot : public ServiceRoot {
|
|||||||
// NOTE: This is used for import/export of the model.
|
// NOTE: This is used for import/export of the model.
|
||||||
bool mergeImportExportModel(FeedsImportExportModel *model, QString &output_message);
|
bool mergeImportExportModel(FeedsImportExportModel *model, QString &output_message);
|
||||||
|
|
||||||
|
// Return "add feed" and "add category" items.
|
||||||
QList<QAction*> specificAddItemActions();
|
QList<QAction*> specificAddItemActions();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user