34 lines
532 B
C
34 lines
532 B
C
|
#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
|