AutoCatGnome/gtkpp/Box.h

25 lines
442 B
C++

//
// Created by selim on 10.05.2022.
//
#ifndef AUTOCAT_GNOME_BOX_H
#define AUTOCAT_GNOME_BOX_H
#include "Widget.h"
#include <gtk/gtkbox.h>
#include <gtk/gtkwidget.h>
namespace gtkpp {
class Box: public Widget {
public:
Box(GtkWidget* widget);
Box(GtkOrientation orientation, int spacing);
void append(const Widget& widget);
void append(GtkWidget* widget);
};
}
#endif //AUTOCAT_GNOME_BOX_H