about summary refs log tree commit diff stats
path: root/data/maps/daedalus/rooms/Zoo N.txtpb
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-09 18:24:45 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-09 18:24:45 -0400
commit1cb8bd3d8a0010bd82bbe0a4df0486c091f861a3 (patch)
treeb65ecdfb0c6e39e6c90fed266559590a990734eb /data/maps/daedalus/rooms/Zoo N.txtpb
parentb5dbe08fc834ec6ddf5eaf0e8a352c5c293c9373 (diff)
downloadlingo2-archipelago-1cb8bd3d8a0010bd82bbe0a4df0486c091f861a3.tar.gz
lingo2-archipelago-1cb8bd3d8a0010bd82bbe0a4df0486c091f861a3.tar.bz2
lingo2-archipelago-1cb8bd3d8a0010bd82bbe0a4df0486c091f861a3.zip
[Client] Changed version format
Diffstat (limited to 'data/maps/daedalus/rooms/Zoo N.txtpb')
0 files changed, 0 insertions, 0 deletions
19' href='#n19'>19 20 21 22 23 24 25
26
27
28
29
30
31
32
33
34









                                    
                       













                                                                                

                                                 


                            
                           


                                                               
#ifndef CONNECTION_DIALOG_H_E526D0E7
#define CONNECTION_DIALOG_H_E526D0E7

#include <wx/wxprec.h>

#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif

#include <string>
#include <wx/listbox.h>

class ConnectionDialog : public wxDialog {
 public:
  ConnectionDialog();

  std::string GetServerValue() { return server_box_->GetValue().ToStdString(); }

  std::string GetPlayerValue() { return player_box_->GetValue().ToStdString(); }

  std::string GetPasswordValue() {
    return password_box_->GetValue().ToStdString();
  }

 private:
   void OnOldConnectionChosen(wxCommandEvent& e);

  wxTextCtrl* server_box_;
  wxTextCtrl* player_box_;
  wxTextCtrl* password_box_;
  wxListBox* history_list_;
};

#endif /* end of include guard: CONNECTION_DIALOG_H_E526D0E7 */