mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
use separated class files, use hpp header extension, update include model
This commit is contained in:
parent
9b6dceddd8
commit
0f96ff851e
15 changed files with 235 additions and 145 deletions
21
src/app/browser.hpp
Normal file
21
src/app/browser.hpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#ifndef APP_BROWSER_H
|
||||
#define APP_BROWSER_H
|
||||
|
||||
#include <glibmm/i18n.h>
|
||||
#include <gtkmm/applicationwindow.h>
|
||||
|
||||
namespace app
|
||||
{
|
||||
class Browser : public Gtk::ApplicationWindow
|
||||
{
|
||||
public:
|
||||
|
||||
const char * TITLE = _("Yoda");
|
||||
const int WIDTH = 640;
|
||||
const int HEIGHT = 480;
|
||||
|
||||
Browser();
|
||||
};
|
||||
}
|
||||
|
||||
#endif // APP_BROWSER_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue