added some wxMSW stuff
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
313
src/msw/combobox.cpp
Normal file
313
src/msw/combobox.cpp
Normal file
@@ -0,0 +1,313 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: combobox.cpp
|
||||
// Purpose: wxComboBox class
|
||||
// Author: Julian Smart
|
||||
// Modified by:
|
||||
// Created: 01/02/97
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) Julian Smart and Markus Holzem
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma implementation "combobox.h"
|
||||
#endif
|
||||
|
||||
// For compilers that support precompilation, includes "wx.h".
|
||||
#include "wx/wxprec.h"
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/setup.h"
|
||||
#endif
|
||||
|
||||
#if USE_COMBOBOX
|
||||
|
||||
#include "wx/combobox.h"
|
||||
#include "wx/clipbrd.h"
|
||||
#include "wx/msw/private.h"
|
||||
|
||||
#if !USE_SHARED_LIBRARY
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl)
|
||||
#endif
|
||||
|
||||
bool wxComboBox::MSWCommand(const WXUINT param, const WXWORD WXUNUSED(id))
|
||||
{
|
||||
if (param == CBN_SELCHANGE)
|
||||
{
|
||||
wxCommandEvent event(wxEVENT_TYPE_COMBOBOX_COMMAND, m_windowId);
|
||||
event.SetInt(GetSelection());
|
||||
event.SetEventObject(this);
|
||||
event.SetString(copystring(GetStringSelection()));
|
||||
ProcessCommand(event);
|
||||
delete[] event.GetString();
|
||||
return TRUE;
|
||||
}
|
||||
else return FALSE;
|
||||
}
|
||||
|
||||
bool wxComboBox::Create(wxWindow *parent, const wxWindowID id,
|
||||
const wxString& value,
|
||||
const wxPoint& pos,
|
||||
const wxSize& size,
|
||||
const int n, const wxString choices[],
|
||||
const long style,
|
||||
const wxValidator& validator,
|
||||
const wxString& name)
|
||||
{
|
||||
SetName(name);
|
||||
SetValidator(validator);
|
||||
if (parent) parent->AddChild(this);
|
||||
SetBackgroundColour(parent->GetDefaultBackgroundColour()) ;
|
||||
SetForegroundColour(parent->GetDefaultForegroundColour()) ;
|
||||
no_strings = n;
|
||||
|
||||
m_windowStyle = style;
|
||||
|
||||
if ( id == -1 )
|
||||
m_windowId = (int)NewControlId();
|
||||
else
|
||||
m_windowId = id;
|
||||
|
||||
int x = pos.x;
|
||||
int y = pos.y;
|
||||
int width = size.x;
|
||||
int height = size.y;
|
||||
|
||||
long msStyle = WS_CHILD | WS_HSCROLL | WS_VSCROLL
|
||||
| WS_TABSTOP | WS_VISIBLE | CBS_NOINTEGRALHEIGHT;
|
||||
if (m_windowStyle & wxCB_READONLY)
|
||||
msStyle |= CBS_DROPDOWNLIST;
|
||||
else if (m_windowStyle & wxCB_SIMPLE) // A list (shown always) and edit control
|
||||
msStyle |= CBS_SIMPLE;
|
||||
else
|
||||
msStyle |= CBS_DROPDOWN;
|
||||
|
||||
if (m_windowStyle & wxCB_SORT)
|
||||
msStyle |= CBS_SORT;
|
||||
|
||||
bool want3D;
|
||||
WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D) ;
|
||||
|
||||
// Even with extended styles, need to combine with WS_BORDER
|
||||
// for them to look right.
|
||||
if (want3D || (m_windowStyle & wxSIMPLE_BORDER) || (m_windowStyle & wxRAISED_BORDER) ||
|
||||
(m_windowStyle & wxSUNKEN_BORDER) || (m_windowStyle & wxDOUBLE_BORDER))
|
||||
msStyle |= WS_BORDER;
|
||||
|
||||
HWND wx_combo = CreateWindowEx(exStyle, "COMBOBOX", NULL,
|
||||
msStyle,
|
||||
0, 0, 0, 0, (HWND) parent->GetHWND(), (HMENU)m_windowId,
|
||||
wxGetInstance(), NULL);
|
||||
/*
|
||||
#if CTL3D
|
||||
if (want3D)
|
||||
{
|
||||
Ctl3dSubclassCtl(wx_combo);
|
||||
m_useCtl3D = TRUE;
|
||||
}
|
||||
#endif
|
||||
*/
|
||||
|
||||
m_hWnd = (WXHWND)wx_combo;
|
||||
|
||||
// Subclass again for purposes of dialog editing mode
|
||||
SubclassWin((WXHWND)wx_combo);
|
||||
|
||||
SetFont(* parent->GetFont());
|
||||
int i;
|
||||
for (i = 0; i < n; i++)
|
||||
SendMessage(wx_combo, CB_INSERTSTRING, i, (LONG)(const char *)choices[i]);
|
||||
SendMessage(wx_combo, CB_SETCURSEL, i, 0);
|
||||
|
||||
SetSize(x, y, width, height);
|
||||
if ( value != "" )
|
||||
SetWindowText(wx_combo, (const char *)value);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
wxString wxComboBox::GetValue(void) const
|
||||
{
|
||||
GetWindowText((HWND) GetHWND(), wxBuffer, 500);
|
||||
return wxString(wxBuffer);
|
||||
}
|
||||
|
||||
void wxComboBox::SetValue(const wxString& value)
|
||||
{
|
||||
// If newlines are denoted by just 10, must stick 13 in front.
|
||||
int singletons = 0;
|
||||
int len = value.Length();
|
||||
int i;
|
||||
for (i = 0; i < len; i ++)
|
||||
{
|
||||
if ((i > 0) && (value[i] == 10) && (value[i-1] != 13))
|
||||
singletons ++;
|
||||
}
|
||||
if (singletons > 0)
|
||||
{
|
||||
char *tmp = new char[len + singletons + 1];
|
||||
int j = 0;
|
||||
for (i = 0; i < len; i ++)
|
||||
{
|
||||
if ((i > 0) && (value[i] == 10) && (value[i-1] != 13))
|
||||
{
|
||||
tmp[j] = 13;
|
||||
j ++;
|
||||
}
|
||||
tmp[j] = value[i];
|
||||
j ++;
|
||||
}
|
||||
tmp[j] = 0;
|
||||
SetWindowText((HWND) GetHWND(), tmp);
|
||||
delete[] tmp;
|
||||
}
|
||||
else
|
||||
SetWindowText((HWND) GetHWND(), (const char *)value);
|
||||
}
|
||||
|
||||
// Clipboard operations
|
||||
void wxComboBox::Copy(void)
|
||||
{
|
||||
HWND hWnd = (HWND) GetHWND();
|
||||
SendMessage(hWnd, WM_COPY, 0, 0L);
|
||||
}
|
||||
|
||||
void wxComboBox::Cut(void)
|
||||
{
|
||||
HWND hWnd = (HWND) GetHWND();
|
||||
SendMessage(hWnd, WM_CUT, 0, 0L);
|
||||
}
|
||||
|
||||
void wxComboBox::Paste(void)
|
||||
{
|
||||
HWND hWnd = (HWND) GetHWND();
|
||||
SendMessage(hWnd, WM_PASTE, 0, 0L);
|
||||
}
|
||||
|
||||
void wxComboBox::SetEditable(const bool editable)
|
||||
{
|
||||
// Can't implement in MSW?
|
||||
// HWND hWnd = (HWND) GetHWND();
|
||||
// SendMessage(hWnd, EM_SETREADONLY, (WPARAM)!editable, (LPARAM)0L);
|
||||
}
|
||||
|
||||
void wxComboBox::SetInsertionPoint(const long pos)
|
||||
{
|
||||
/*
|
||||
HWND hWnd = (HWND) GetHWND();
|
||||
#ifdef __WIN32__
|
||||
SendMessage(hWnd, EM_SETSEL, pos, pos);
|
||||
SendMessage(hWnd, EM_SCROLLCARET, (WPARAM)0, (LPARAM)0);
|
||||
#else
|
||||
SendMessage(hWnd, EM_SETSEL, 0, MAKELPARAM(pos, pos));
|
||||
#endif
|
||||
char *nothing = "";
|
||||
SendMessage(hWnd, EM_REPLACESEL, 0, (LPARAM)nothing);
|
||||
*/
|
||||
}
|
||||
|
||||
void wxComboBox::SetInsertionPointEnd(void)
|
||||
{
|
||||
/*
|
||||
long pos = GetLastPosition();
|
||||
SetInsertionPoint(pos);
|
||||
*/
|
||||
}
|
||||
|
||||
long wxComboBox::GetInsertionPoint(void) const
|
||||
{
|
||||
/*
|
||||
DWORD Pos=(DWORD)SendMessage((HWND) GetHWND(), EM_GETSEL, 0, 0L);
|
||||
return Pos&0xFFFF;
|
||||
*/
|
||||
return 0;
|
||||
}
|
||||
|
||||
long wxComboBox::GetLastPosition(void) const
|
||||
{
|
||||
/*
|
||||
HWND hWnd = (HWND) GetHWND();
|
||||
|
||||
// Will always return a number > 0 (according to docs)
|
||||
int noLines = (int)SendMessage(hWnd, EM_GETLINECOUNT, (WPARAM)0, (LPARAM)0L);
|
||||
|
||||
// This gets the char index for the _beginning_ of the last line
|
||||
int charIndex = (int)SendMessage(hWnd, EM_LINEINDEX, (WPARAM)(noLines-1), (LPARAM)0L);
|
||||
|
||||
// Get number of characters in the last line. We'll add this to the character
|
||||
// index for the last line, 1st position.
|
||||
int lineLength = (int)SendMessage(hWnd, EM_LINELENGTH, (WPARAM)charIndex, (LPARAM)0L);
|
||||
|
||||
return (long)(charIndex + lineLength);
|
||||
*/
|
||||
return 0;
|
||||
}
|
||||
|
||||
void wxComboBox::Replace(const long from, const long to, const wxString& value)
|
||||
{
|
||||
#if USE_CLIPBOARD
|
||||
HWND hWnd = (HWND) GetHWND();
|
||||
long fromChar = from;
|
||||
long toChar = to;
|
||||
|
||||
// Set selection and remove it
|
||||
#ifdef __WIN32__
|
||||
SendMessage(hWnd, CB_SETEDITSEL, fromChar, toChar);
|
||||
#else
|
||||
SendMessage(hWnd, CB_SETEDITSEL, (WPARAM)0, (LPARAM)MAKELONG(fromChar, toChar));
|
||||
#endif
|
||||
SendMessage(hWnd, WM_CUT, (WPARAM)0, (LPARAM)0);
|
||||
|
||||
// Now replace with 'value', by pasting.
|
||||
wxSetClipboardData(wxCF_TEXT, (wxObject *)(const char *)value, 0, 0);
|
||||
|
||||
// Paste into edit control
|
||||
SendMessage(hWnd, WM_PASTE, (WPARAM)0, (LPARAM)0L);
|
||||
#endif
|
||||
}
|
||||
|
||||
void wxComboBox::Remove(const long from, const long to)
|
||||
{
|
||||
HWND hWnd = (HWND) GetHWND();
|
||||
long fromChar = from;
|
||||
long toChar = to;
|
||||
|
||||
// Cut all selected text
|
||||
#ifdef __WIN32__
|
||||
SendMessage(hWnd, CB_SETEDITSEL, fromChar, toChar);
|
||||
#else
|
||||
SendMessage(hWnd, CB_SETEDITSEL, (WPARAM)0, (LPARAM)MAKELONG(fromChar, toChar));
|
||||
#endif
|
||||
SendMessage(hWnd, WM_CUT, (WPARAM)0, (LPARAM)0);
|
||||
}
|
||||
|
||||
void wxComboBox::SetSelection(const long from, const long to)
|
||||
{
|
||||
HWND hWnd = (HWND) GetHWND();
|
||||
long fromChar = from;
|
||||
long toChar = to;
|
||||
// if from and to are both -1, it means
|
||||
// (in wxWindows) that all text should be selected.
|
||||
// This translates into Windows convention
|
||||
if ((from == -1) && (to == -1))
|
||||
{
|
||||
fromChar = 0;
|
||||
toChar = -1;
|
||||
}
|
||||
|
||||
#ifdef __WIN32__
|
||||
SendMessage(hWnd, CB_SETEDITSEL, (WPARAM)fromChar, (LPARAM)toChar);
|
||||
// SendMessage(hWnd, EM_SCROLLCARET, (WPARAM)0, (LPARAM)0);
|
||||
#else
|
||||
// WPARAM is 0: selection is scrolled into view
|
||||
SendMessage(hWnd, CB_SETEDITSEL, (WPARAM)0, (LPARAM)MAKELONG(fromChar, toChar));
|
||||
#endif
|
||||
}
|
||||
|
||||
#endif
|
||||
// USE_COMBOBOX
|
||||
|
Reference in New Issue
Block a user