Yoda/src/app/browser.hpp

25 lines
468 B
C++
Raw Normal View History

#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;
2024-08-11 09:55:10 +03:00
Browser(
const Glib::RefPtr<Gtk::Application> & app
);
void debug();
};
}
#endif // APP_BROWSER_H