vnote/vmainwindow.h
Le Tan 811172ef8a initial commit for VNote
VNote is a Vim-Like Note for Markdown.

Signed-off-by: Le Tan <tamlokveer@gmail.com>
2016-10-01 15:45:27 +08:00

33 lines
547 B
C++

#ifndef VMAINWINDOW_H
#define VMAINWINDOW_H
#include <QMainWindow>
class QLabel;
class QComboBox;
class VDirectoryTree;
class QSplitter;
class QListWidget;
class QTabWidget;
class VMainWindow : public QMainWindow
{
Q_OBJECT
public:
VMainWindow(QWidget *parent = 0);
~VMainWindow();
private:
void setupUI();
QLabel *notebookLabel;
QComboBox *notebookComboBox;
VDirectoryTree *directoryTree;
QListWidget *fileListWidget;
QTabWidget *editorTabWidget;
QSplitter *mainSplitter;
};
#endif // VMAINWINDOW_H