Added initial File boilerplate.

This commit is contained in:
Jim Evins
2014-09-01 23:26:20 -04:00
parent 06ff813618
commit b318efd68e
7 changed files with 260 additions and 35 deletions
+14 -4
View File
@@ -22,19 +22,29 @@
#define glabels_File_h
#include <QWidget>
#include <QObject>
namespace glabels
{
class MainWindow;
///
/// File Actions
///
namespace File
class File : public QObject
{
void newLabel( QWidget *parent );
}
Q_OBJECT
public:
static void newLabel( MainWindow *window );
static void open( MainWindow *window );
static bool save( MainWindow *window );
static bool saveAs( MainWindow *window );
static void print( MainWindow *window );
static void close( MainWindow *window );
static void exit();
};
}