26 lines
435 B
C++
26 lines
435 B
C++
//
|
|
// Created by selim on 10.05.2022.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_ENTRY_H
|
|
#define AUTOCAT_GNOME_ENTRY_H
|
|
|
|
#include "Widget.h"
|
|
#include <string>
|
|
|
|
namespace gtkpp {
|
|
|
|
class Entry: public Widget {
|
|
private:
|
|
|
|
public:
|
|
Entry();
|
|
void setPlaceholder(const std::string& placeholder);
|
|
void setPurpose(GtkInputPurpose purpose);
|
|
void setVisibility(bool visibility);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //AUTOCAT_GNOME_ENTRY_H
|