]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/dbbrowse/dlguser.cpp
remove .cvsignore files, they're useless with svn
[wxWidgets.git] / demos / dbbrowse / dlguser.cpp
index 8696ef530492415d28e7652a04a5400182ae7ec0..f7511a352f014cf4e0f04d0820be45f4756cff62 100644 (file)
@@ -1,5 +1,5 @@
 //----------------------------------------------------------------------------------------
-// Name:        DlgUser.h,cpp
+// Name:        DlgUser.cpp
 // Purpose:     Dialog mit Variable Gestaltung durch DlgUser.wxr
 // Author:      Mark Johnson
 // Modified by: 19991105.mj10777
@@ -8,13 +8,7 @@
 // Licence:     wxWindows license
 // RCS-ID:      $Id$
 //----------------------------------------------------------------------------------------
-//-- all #ifdefs that the whole Project needs. -------------------------------------------
-//----------------------------------------------------------------------------------------
-#ifdef __GNUG__
-#pragma implementation
-#pragma interface
-#endif
-//----------------------------------------------------------------------------------------
+
 // For compilers that support precompilation, includes "wx/wx.h".
 #include "wx/wxprec.h"
 //----------------------------------------------------------------------------------------
@@ -37,18 +31,18 @@ DlgUser::DlgUser(wxWindow *parent, MainDoc *p_Doc, const wxString& title) :
                 wxDialog(parent, ID_DIALOG_DSN, title)
 {
     int chSize;                          // Height of Font * 1.4 = Height of wxTextCtrl
-    
+
     float ratio = (float)1.4;
 #ifdef __WXMOTIF__
     ratio = (float)2.1;
 #endif
-    
+
     SetBackgroundColour(_T("wheat"));
     pDoc = p_Doc;
     wxLayoutConstraints* layout;
-    SetAutoLayout(TRUE);
-    
-    m_Label1 = new wxStaticText(this, -1, _("User ID:"));
+    SetAutoLayout(true);
+
+    m_Label1 = new wxStaticText(this, wxID_ANY, _("User ID:"));
     m_Label1->SetFont(* pDoc->ft_Doc);
     layout = new wxLayoutConstraints;
     layout->left.SameAs(this, wxLeft, 10);
@@ -56,14 +50,14 @@ DlgUser::DlgUser(wxWindow *parent, MainDoc *p_Doc, const wxString& title) :
     layout->height.AsIs();
     layout->width.Absolute(75);
     m_Label1->SetConstraints(layout);
-    
+
     int w;
-    m_Label1->GetSize(&w, &chSize); 
-    
-    m_UserName = new wxTextCtrl(this, -1, _T(""));
+    m_Label1->GetSize(&w, &chSize);
+
+    m_UserName = new wxTextCtrl(this, wxID_ANY, wxEmptyString);
     m_UserName->SetFont(* pDoc->ft_Doc);
     chSize = (int) (m_UserName->GetCharHeight()*ratio);
-    
+
     layout = new wxLayoutConstraints;
     layout->left.SameAs(m_Label1, wxRight, 10);
     layout->centreY.SameAs(m_Label1,wxCentreY);
@@ -71,9 +65,9 @@ DlgUser::DlgUser(wxWindow *parent, MainDoc *p_Doc, const wxString& title) :
     layout->height.Absolute(chSize);
     // layout->height.AsIs();
     m_UserName->SetConstraints(layout);
-    
-    
-    m_Label2 = new wxStaticText(this, -1, _("Password:"));
+
+
+    m_Label2 = new wxStaticText(this, wxID_ANY, _("Password:"));
     m_Label2->SetFont(* pDoc->ft_Doc);
     layout = new wxLayoutConstraints;
     layout->left.SameAs(m_Label1, wxLeft);
@@ -81,8 +75,8 @@ DlgUser::DlgUser(wxWindow *parent, MainDoc *p_Doc, const wxString& title) :
     layout->height.AsIs();
     layout->width.SameAs(m_Label1, wxWidth);
     m_Label2->SetConstraints(layout);
-    
-    m_Password = new wxTextCtrl(this, -1, _T(""), wxDefaultPosition, wxDefaultSize, wxTE_PASSWORD);
+
+    m_Password = new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PASSWORD);
     m_Password->SetFont(* pDoc->ft_Doc);
     layout = new wxLayoutConstraints;
     layout->left.SameAs(m_UserName, wxLeft);
@@ -91,8 +85,8 @@ DlgUser::DlgUser(wxWindow *parent, MainDoc *p_Doc, const wxString& title) :
     layout->height.Absolute(chSize);
     //layout->height.AsIs();
     m_Password->SetConstraints(layout);
-    
-    m_OK = new wxButton(this, wxID_OK, _("OK"));
+
+    m_OK = new wxButton(this, wxID_OK);
     m_OK->SetFont(* pDoc->ft_Doc);
     layout = new wxLayoutConstraints;
     layout->left.SameAs(this, wxLeft, 10);
@@ -100,8 +94,8 @@ DlgUser::DlgUser(wxWindow *parent, MainDoc *p_Doc, const wxString& title) :
     layout->height.AsIs();
     layout->width.Absolute(75);
     m_OK->SetConstraints(layout);
-    
-    m_Cancel = new wxButton(this, wxID_CANCEL, _("Cancel"));
+
+    m_Cancel = new wxButton(this, wxID_CANCEL);
     m_Cancel->SetFont(* pDoc->ft_Doc);
     layout = new wxLayoutConstraints;
     layout->left.SameAs(m_OK, wxRight, 10);
@@ -109,12 +103,12 @@ DlgUser::DlgUser(wxWindow *parent, MainDoc *p_Doc, const wxString& title) :
     layout->height.AsIs();
     layout->width.SameAs(m_OK, wxWidth);
     m_Cancel->SetConstraints(layout);
-    
+
     m_OK->SetDefault();
     m_UserName->SetFocus();
-    
-    s_User = _T("");
-    s_Password = _T("");
+
+    s_User = wxEmptyString;
+    s_Password = wxEmptyString;
     Layout();
 }
 
@@ -130,23 +124,13 @@ void DlgUser::OnInit()
 //----------------------------------------------------------------------------------------
 BEGIN_EVENT_TABLE(DlgUser, wxDialog)
     EVT_BUTTON(wxID_OK, DlgUser::OnOk)
-    EVT_BUTTON(wxID_CANCEL, DlgUser::OnCancel)
 END_EVENT_TABLE()
 
 //----------------------------------------------------------------------------------------
 void DlgUser::OnOk(wxCommandEvent& WXUNUSED(event) )
 {
-    //canceled = FALSE;
     s_User    = m_UserName->GetValue();
     s_Password = m_Password->GetValue();
     EndModal(wxID_OK);
 }
 
-//----------------------------------------------------------------------------------------
-//void DlgUser::OnCancel(wxCommandEvent& WXUNUSED(event) )
-// {
-//   canceled = TRUE;
-//   EndModal(wxID_CANCEL);
-// }
-//----------------------------------------------------------------------------------------
-