merge default
This commit is contained in:
commit
b23c890bbf
9 changed files with 30 additions and 17 deletions
|
@ -124,6 +124,7 @@ sint main(int argc, char **argv)
|
|||
|
||||
nlinfo("Welcome to NeL Object Viewer Qt!");
|
||||
}
|
||||
QApplication::setGraphicsSystem("raster");
|
||||
QApplication app(argc, argv);
|
||||
QSplashScreen *splash = new QSplashScreen();
|
||||
splash->setPixmap(QPixmap(":/images/nel_ide_load.png"));
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<RCC>
|
||||
<qresource prefix="/core">
|
||||
<file>icons/ic_nel_add_item.png</file>
|
||||
<file>icons/ic_nel_redo.png</file>
|
||||
<file>icons/ic_nel_undo.png</file>
|
||||
<file>icons/ic_nel_crash.png</file>
|
||||
<file>icons/ic_nel_delete_item.png</file>
|
||||
<file>icons/ic_nel_down_item.png</file>
|
||||
|
|
|
@ -112,6 +112,8 @@ const char * const ICON_NEW = ":/core/icons/ic_nel_new.png";
|
|||
const char * const ICON_SAVE = ":/core/icons/ic_nel_save.png";
|
||||
const char * const ICON_SAVE_AS = ":/core/icons/ic_nel_save_as.png";
|
||||
const char * const ICON_CRASH = ":/core/icons/ic_nel_crash.png";
|
||||
const char * const ICON_UNDO = ":/core/icons/ic_nel_undo.png";
|
||||
const char * const ICON_REDO = ":/core/icons/ic_nel_redo.png";
|
||||
|
||||
} // namespace Constants
|
||||
} // namespace Core
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
|
@ -384,8 +384,12 @@ void MainWindow::createMenus()
|
|||
|
||||
m_editMenu = m_menuBar->addMenu(tr("&Edit"));
|
||||
QAction *undoAction = m_undoGroup->createUndoAction(this);
|
||||
menuManager()->registerAction(undoAction, Constants::UNDO);
|
||||
undoAction->setIcon(QIcon(Constants::ICON_UNDO));
|
||||
undoAction->setShortcut(QKeySequence::Undo);
|
||||
QAction *redoAction = m_undoGroup->createRedoAction(this);
|
||||
menuManager()->registerAction(redoAction, Constants::REDO);
|
||||
redoAction->setIcon(QIcon(Constants::ICON_REDO));
|
||||
redoAction->setShortcut(QKeySequence::Redo);
|
||||
m_editMenu->addAction(undoAction);
|
||||
m_editMenu->addAction(redoAction);
|
||||
|
|
|
@ -68,7 +68,7 @@ namespace Plugin
|
|||
{
|
||||
Q_UNUSED(errorString);
|
||||
m_plugMan = pluginManager;
|
||||
m_logSettingsPage = new CLogSettingsPage(this);
|
||||
m_logSettingsPage = new CLogSettingsPage(this, this);
|
||||
addAutoReleasedObject(m_logSettingsPage);
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -38,8 +38,9 @@ namespace Plugin
|
|||
|
||||
class CLogPlugin;
|
||||
|
||||
CLogSettingsPage::CLogSettingsPage(QObject *parent)
|
||||
CLogSettingsPage::CLogSettingsPage(CLogPlugin *logPlugin, QObject *parent)
|
||||
: IOptionsPage(parent),
|
||||
m_logPlugin(logPlugin),
|
||||
m_currentPage(NULL),
|
||||
m_error(true),
|
||||
m_warning(true),
|
||||
|
|
|
@ -29,6 +29,8 @@ class QWidget;
|
|||
|
||||
namespace Plugin
|
||||
{
|
||||
class CLogPlugin;
|
||||
|
||||
/**
|
||||
@class CLogSettingsPage
|
||||
*/
|
||||
|
@ -36,7 +38,7 @@ namespace Plugin
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
CLogSettingsPage(QObject *parent = 0);
|
||||
CLogSettingsPage(CLogPlugin *logPlugin, QObject *parent = 0);
|
||||
virtual ~CLogSettingsPage() {}
|
||||
|
||||
virtual QString id() const;
|
||||
|
@ -53,6 +55,7 @@ namespace Plugin
|
|||
void readSettings();
|
||||
void writeSettings();
|
||||
|
||||
CLogPlugin *m_logPlugin;
|
||||
QWidget *m_currentPage;
|
||||
Ui::CLogSettingsPage m_ui;
|
||||
|
||||
|
|
Loading…
Reference in a new issue