// // Created by selim on 10.05.2022. // #ifndef AUTOCAT_GNOME_WIDGET_H #define AUTOCAT_GNOME_WIDGET_H #include namespace gtkpp { class Widget { protected: GtkWidget* _widget; public: [[nodiscard]] GtkWidget* gobj() const; void setMargins(int margin); void setVAlign(GtkAlign align); void setVExpand(bool expand); }; } #endif //AUTOCAT_GNOME_WIDGET_H