first commit, base client with gtk3
This commit is contained in:
33
view_loggin.h
Normal file
33
view_loggin.h
Normal file
@@ -0,0 +1,33 @@
|
||||
#ifndef VIEW_LOGGIN_H
|
||||
#define VIEW_LOGGIN_H
|
||||
|
||||
#include <gtkmm/window.h>
|
||||
#include <gtkmm/button.h>
|
||||
#include <gtkmm/box.h>
|
||||
#include <gtkmm/label.h>
|
||||
#include <gtkmm/entry.h>
|
||||
#include "conexion.h"
|
||||
|
||||
class view_loggin : public Gtk::Window
|
||||
{
|
||||
public:
|
||||
view_loggin(conexion *con);
|
||||
conexion *con;
|
||||
|
||||
Gtk::Label user;
|
||||
Gtk::Entry entry_user;
|
||||
Gtk::Box box_user;
|
||||
|
||||
Gtk::Label pass;
|
||||
Gtk::Entry entry_pass;
|
||||
Gtk::Box box_pass;
|
||||
|
||||
Gtk::Button button;
|
||||
Gtk::Box box;
|
||||
|
||||
void on_button_clicked();
|
||||
|
||||
bool login;
|
||||
};
|
||||
|
||||
#endif // VIEW_LOGGIN_H
|
||||
Reference in New Issue
Block a user