added some files
This commit is contained in:
parent
dbfee4dcdd
commit
6be1aad043
9 changed files with 390 additions and 0 deletions
27
MainWindow.h
Normal file
27
MainWindow.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* Copyright 2024, My Name <my@email.address>
|
||||
* All rights reserved. Distributed under the terms of the MIT license.
|
||||
*/
|
||||
#ifndef MAINWINDOW_H
|
||||
#define MAINWINDOW_H
|
||||
|
||||
|
||||
#include <MenuItem.h>
|
||||
#include <Window.h>
|
||||
|
||||
|
||||
class MainWindow : public BWindow
|
||||
{
|
||||
public:
|
||||
MainWindow();
|
||||
virtual ~MainWindow();
|
||||
|
||||
virtual void MessageReceived(BMessage* msg);
|
||||
|
||||
private:
|
||||
BMenuBar* _BuildMenu();
|
||||
|
||||
BMenuItem* fSaveMenuItem;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue