mirror of
https://github.com/YACReader/yacreader
synced 2025-07-26 00:44:59 -04:00
added the basic methods to YACRreaderMacOSXToolbar, some of them have been implemented succesfully. Tested in YACReader
This commit is contained in:
@ -9,6 +9,10 @@
|
||||
#include <QCloseEvent>
|
||||
#include <QSettings>
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
#include "yacreader_macosx_toolbar.h"
|
||||
#endif
|
||||
|
||||
#include "comic_db.h"
|
||||
|
||||
class Comic;
|
||||
@ -77,7 +81,11 @@ class EditShortcutsDialog;
|
||||
EditShortcutsDialog * editShortcutsDialog;
|
||||
|
||||
//! ToolBars
|
||||
QToolBar *comicToolBar;
|
||||
#ifdef Q_OS_MAC
|
||||
YACReaderMacOSXToolbar * comicToolBar;
|
||||
#else
|
||||
QToolBar * comicToolBar;
|
||||
#endif
|
||||
|
||||
//! Actions
|
||||
QAction *openAction;
|
||||
|
Reference in New Issue
Block a user