Fix compile error

This commit is contained in:
daleclack 2021-06-22 17:11:50 +08:00
parent 33613dcd00
commit bff59d9ba2
2 changed files with 3 additions and 31 deletions

View File

@ -1,31 +0,0 @@
#pragma once
#include <gtkmm.h>
class MyWin : public Gtk::ApplicationWindow{
public:
MyWin();
private:
//Child Widgets
Glib::RefPtr<Gtk::Builder> menu_builder;
//Main window
Gtk::Image background;
Gtk::Overlay overlay;
Gtk::Box btn_box;
Gtk::ComboBoxText combo;
Gtk::Button btn_ver;
//TitleBar and menu
Gtk::HeaderBar header;
Gtk::MenuButton menubtn;
Gtk::PopoverMenu popover;
void titlebar_init();
//Backgrounds
void background1();
void background2();
//Signal Handlers
void about_dialog();
};

View File

@ -25,4 +25,7 @@ private:
//Backgrounds
void background1();
void background2();
//Signal Handlers
void about_dialog();
};