24 lines
409 B
C++
24 lines
409 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(GtkOrientation orientation, int spacing);
|
|
void append(const Widget& widget);
|
|
void append(GtkWidget* widget);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //AUTOCAT_GNOME_BOX_H
|