]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Client/include/dlg_conectar.h
Se arregla el cliente para que compile de nuevo (NOT TESTED!)
[z.facultad/75.42/plaqui.git] / Client / include / dlg_conectar.h
index 3c75234fc3b500a396603c4bd3d3f34c77bd600e..834fff30a8256763e5324bcbfd47dea7c36a7927 100644 (file)
  *  Este diálogo deja al usuario ingresar el nombre del servidor y
  *  el puerto para inicializar una simulación.
  */
-class DlgConectar:public Gtk::Window {
+class DlgConectar:public Gtk::Dialog {
 public:
        /// Constructor
        DlgConectar(BaseObjectType *co, const Glib::RefPtr<Gnome::Glade::Xml> &rg);
        /// Destructor
        virtual ~DlgConectar();
 
+       Gtk::Button *get_ok_button();
+
+       Glib::ustring get_server_name();
+       int get_server_port();
+
+       virtual void on_cancel_clicked();
 protected:
        /// Referencia al XML desde donde fue creada la ventana
        Glib::RefPtr<Gnome::Glade::Xml> refXml;
-
-       /// Handler del boton OK
-       virtual void on_btn_ok_clicked();
-       /// Handler del boton CANCEL
-       virtual void on_btn_cancel_clicked();
+       Gtk::Button *ok, *cancel;
 };
 
 #endif