2000-02-12 14:11:17 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
2000-01-28 15:25:32 +00:00
|
|
|
// Name: DlgUser.h,cpp
|
|
|
|
// Purpose: Dialog mit Variable Gestaltung durch DlgUser.wxr
|
|
|
|
// Author: Mark Johnson, mj10777@gmx.net
|
|
|
|
// Modified by: 19991105.mj10777
|
|
|
|
// Created: 19991105
|
|
|
|
// Copyright: (c) Mark Johnson
|
|
|
|
// Licence: wxWindows license
|
2000-01-31 13:20:36 +00:00
|
|
|
// RCS-ID: $Id$
|
2000-02-12 14:11:17 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
//-- all #ifdefs that the whole Project needs. -------------------------------------------
|
|
|
|
//----------------------------------------------------------------------------------------
|
2000-01-28 15:25:32 +00:00
|
|
|
#ifdef __GNUG__
|
2000-01-31 10:43:24 +00:00
|
|
|
#pragma implementation
|
|
|
|
#pragma interface
|
2000-01-28 15:25:32 +00:00
|
|
|
#endif
|
2000-02-12 14:11:17 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
2000-01-28 15:25:32 +00:00
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
2000-02-12 14:11:17 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
2000-01-28 15:25:32 +00:00
|
|
|
#ifdef __BORLANDC__
|
2000-01-31 10:43:24 +00:00
|
|
|
#pragma hdrstop
|
2000-01-28 15:25:32 +00:00
|
|
|
#endif
|
2000-02-12 14:11:17 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
2000-01-28 15:25:32 +00:00
|
|
|
#ifndef WX_PRECOMP
|
2000-01-31 10:43:24 +00:00
|
|
|
#include "wx/wx.h"
|
2000-01-28 15:25:32 +00:00
|
|
|
#endif
|
2000-03-17 13:12:10 +00:00
|
|
|
|
|
|
|
|
2000-02-12 14:11:17 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
//-- all #includes that every .cpp needs ----19990807.mj10777 ----------------
|
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
#include "std.h"
|
|
|
|
//----------------------------------------------------------------------------------------
|
2000-02-21 08:05:13 +00:00
|
|
|
DlgUser::DlgUser(wxWindow *parent, MainDoc *p_Doc, const wxString& title) :
|
2000-01-31 13:20:36 +00:00
|
|
|
wxDialog(parent, ID_DIALOG_DSN, title)
|
2000-01-28 15:25:32 +00:00
|
|
|
{
|
2000-03-17 13:31:51 +00:00
|
|
|
int chSize; // Height of Font * 1.4 = Height of wxTextCtrl
|
2000-03-17 13:39:45 +00:00
|
|
|
|
|
|
|
float ratio = 1.4;
|
|
|
|
#ifdef __WXMOTIF__
|
|
|
|
ratio = 2.1;
|
|
|
|
#endif
|
|
|
|
|
2000-02-12 14:11:17 +00:00
|
|
|
SetBackgroundColour("wheat");
|
2000-02-14 09:07:41 +00:00
|
|
|
pDoc = p_Doc;
|
2000-02-12 14:11:17 +00:00
|
|
|
wxLayoutConstraints* layout;
|
|
|
|
SetAutoLayout(TRUE);
|
2000-01-31 13:20:36 +00:00
|
|
|
|
2000-02-14 09:07:41 +00:00
|
|
|
m_Label1 = new wxStaticText(this, -1, _("User ID:"));
|
2000-03-17 13:31:51 +00:00
|
|
|
m_Label1->SetFont(* pDoc->ft_Doc);
|
2000-02-14 09:07:41 +00:00
|
|
|
layout = new wxLayoutConstraints;
|
|
|
|
layout->left.SameAs(this, wxLeft, 10);
|
|
|
|
layout->top.SameAs(this, wxTop, 10);
|
|
|
|
layout->height.AsIs();
|
|
|
|
layout->width.Absolute(75);
|
|
|
|
m_Label1->SetConstraints(layout);
|
2000-03-17 13:31:51 +00:00
|
|
|
|
|
|
|
int w;
|
|
|
|
m_Label1->GetSize(&w, &chSize);
|
2000-03-17 13:12:10 +00:00
|
|
|
|
2000-02-14 09:07:41 +00:00
|
|
|
m_UserName = new wxTextCtrl(this, -1, "");
|
|
|
|
m_UserName->SetFont(* pDoc->ft_Doc);
|
2000-03-17 13:39:45 +00:00
|
|
|
chSize = (int) (m_UserName->GetCharHeight()*ratio);
|
2000-03-17 13:12:10 +00:00
|
|
|
|
2000-02-14 09:07:41 +00:00
|
|
|
layout = new wxLayoutConstraints;
|
|
|
|
layout->left.SameAs(m_Label1, wxRight, 10);
|
|
|
|
layout->centreY.SameAs(m_Label1,wxCentreY);
|
|
|
|
layout->width.Absolute(200);
|
2000-03-17 13:31:51 +00:00
|
|
|
layout->height.Absolute(chSize);
|
|
|
|
// layout->height.AsIs();
|
2000-02-14 09:07:41 +00:00
|
|
|
m_UserName->SetConstraints(layout);
|
2000-02-12 14:11:17 +00:00
|
|
|
|
|
|
|
|
2000-02-14 09:07:41 +00:00
|
|
|
m_Label2 = new wxStaticText(this, -1, _("Password:"));
|
2000-03-17 13:31:51 +00:00
|
|
|
m_Label2->SetFont(* pDoc->ft_Doc);
|
2000-02-14 09:07:41 +00:00
|
|
|
layout = new wxLayoutConstraints;
|
|
|
|
layout->left.SameAs(m_Label1, wxLeft);
|
|
|
|
layout->top.SameAs(m_Label1, wxBottom, 10);
|
|
|
|
layout->height.AsIs();
|
|
|
|
layout->width.SameAs(m_Label1, wxWidth);
|
|
|
|
m_Label2->SetConstraints(layout);
|
2000-02-12 14:11:17 +00:00
|
|
|
|
2000-02-14 09:07:41 +00:00
|
|
|
m_Password = new wxTextCtrl(this, -1, "", wxDefaultPosition, wxDefaultSize, wxTE_PASSWORD);
|
2000-03-17 13:31:51 +00:00
|
|
|
m_Password->SetFont(* pDoc->ft_Doc);
|
2000-02-14 09:07:41 +00:00
|
|
|
layout = new wxLayoutConstraints;
|
|
|
|
layout->left.SameAs(m_UserName, wxLeft);
|
|
|
|
layout->width.SameAs(m_UserName, wxWidth);
|
|
|
|
layout->centreY.SameAs(m_Label2,wxCentreY);
|
2000-03-17 13:31:51 +00:00
|
|
|
layout->height.Absolute(chSize);
|
|
|
|
//layout->height.AsIs();
|
2000-02-14 09:07:41 +00:00
|
|
|
m_Password->SetConstraints(layout);
|
2000-02-12 14:11:17 +00:00
|
|
|
|
2000-02-14 09:07:41 +00:00
|
|
|
m_OK = new wxButton(this, wxID_OK, _("OK"));
|
2000-03-17 13:31:51 +00:00
|
|
|
m_OK->SetFont(* pDoc->ft_Doc);
|
2000-02-14 09:07:41 +00:00
|
|
|
layout = new wxLayoutConstraints;
|
|
|
|
layout->left.SameAs(this, wxLeft, 10);
|
|
|
|
layout->top.SameAs(m_Label2, wxBottom,10);
|
|
|
|
layout->height.AsIs();
|
|
|
|
layout->width.Absolute(75);
|
|
|
|
m_OK->SetConstraints(layout);
|
2000-01-31 13:20:36 +00:00
|
|
|
|
2000-02-14 09:07:41 +00:00
|
|
|
m_Cancel = new wxButton(this, wxID_CANCEL, _("Cancel"));
|
2000-03-17 13:31:51 +00:00
|
|
|
m_Cancel->SetFont(* pDoc->ft_Doc);
|
2000-02-14 09:07:41 +00:00
|
|
|
layout = new wxLayoutConstraints;
|
|
|
|
layout->left.SameAs(m_OK, wxRight, 10);
|
|
|
|
layout->top.SameAs(m_OK, wxTop);
|
|
|
|
layout->height.AsIs();
|
|
|
|
layout->width.SameAs(m_OK, wxWidth);
|
|
|
|
m_Cancel->SetConstraints(layout);
|
2000-01-31 13:20:36 +00:00
|
|
|
|
2000-02-14 09:07:41 +00:00
|
|
|
m_OK->SetDefault();
|
|
|
|
m_UserName->SetFocus();
|
2000-02-12 14:11:17 +00:00
|
|
|
|
2000-02-14 09:07:41 +00:00
|
|
|
s_User = "";
|
|
|
|
s_Password = "";
|
|
|
|
Layout();
|
2000-01-28 15:25:32 +00:00
|
|
|
}
|
2000-02-12 14:11:17 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
void DlgUser::OnInit()
|
|
|
|
{
|
2000-02-21 12:31:07 +00:00
|
|
|
wxString Temp; Temp.Printf(">>> %s <<<",s_DSN.c_str());
|
2000-02-12 14:11:17 +00:00
|
|
|
SetTitle(Temp);
|
|
|
|
m_UserName->SetLabel(s_User);
|
|
|
|
m_Password->SetLabel(s_Password);
|
|
|
|
}
|
|
|
|
//----------------------------------------------------------------------------------------
|
2000-01-28 15:25:32 +00:00
|
|
|
BEGIN_EVENT_TABLE(DlgUser, wxDialog)
|
2000-02-12 14:11:17 +00:00
|
|
|
EVT_BUTTON(wxID_OK, DlgUser::OnOk)
|
|
|
|
EVT_BUTTON(wxID_CANCEL, DlgUser::OnCancel)
|
2000-01-31 13:20:36 +00:00
|
|
|
END_EVENT_TABLE()
|
2000-02-12 14:11:17 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
2000-01-31 13:20:36 +00:00
|
|
|
void DlgUser::OnOk(wxCommandEvent& WXUNUSED(event) )
|
2000-01-28 15:25:32 +00:00
|
|
|
{
|
2000-01-31 13:20:36 +00:00
|
|
|
//canceled = FALSE;
|
|
|
|
s_User = m_UserName->GetValue();
|
|
|
|
s_Password = m_Password->GetValue();
|
2000-01-31 10:43:24 +00:00
|
|
|
EndModal(wxID_OK);
|
2000-01-28 15:25:32 +00:00
|
|
|
}
|
2000-02-12 14:11:17 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
2000-01-31 13:20:36 +00:00
|
|
|
//void DlgUser::OnCancel(wxCommandEvent& WXUNUSED(event) )
|
|
|
|
// {
|
|
|
|
// canceled = TRUE;
|
|
|
|
// EndModal(wxID_CANCEL);
|
|
|
|
// }
|
2000-02-12 14:11:17 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
2000-01-31 13:20:36 +00:00
|
|
|
|