mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-30 21:14:14 +00:00
21 lines
369 B
C++
21 lines
369 B
C++
|
#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
|