wxItemContainerImmutable::FindString unified.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35742 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,12 +1,12 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: cocoa/choice.mm
|
// Name: src/cocoa/choice.mm
|
||||||
// Purpose: wxChoice
|
// Purpose: wxChoice
|
||||||
// Author: David Elliott
|
// Author: David Elliott
|
||||||
// Modified by:
|
// Modified by:
|
||||||
// Created: 2003/03/16
|
// Created: 2003/03/16
|
||||||
// RCS-ID: $Id:
|
// Id: $Id$
|
||||||
// Copyright: (c) 2003 David Elliott
|
// Copyright: (c) 2003 David Elliott
|
||||||
// Licence: wxWidgets licence
|
// Licence: wxWidgets licence
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#include "wx/wxprec.h"
|
#include "wx/wxprec.h"
|
||||||
@@ -173,8 +173,9 @@ void wxChoice::SetString(int n, const wxString& title)
|
|||||||
[item setTitle:wxNSStringWithWxString(title)];
|
[item setTitle:wxNSStringWithWxString(title)];
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxChoice::FindString(const wxString& title) const
|
int wxChoice::FindString(const wxString& title, bool bCase) const
|
||||||
{
|
{
|
||||||
|
// FIXME: use wxItemContainerImmutable::FindString for bCase parameter
|
||||||
return [(NSPopUpButton*)m_cocoaNSView indexOfItemWithTitle:
|
return [(NSPopUpButton*)m_cocoaNSView indexOfItemWithTitle:
|
||||||
wxNSStringWithWxString(title)];
|
wxNSStringWithWxString(title)];
|
||||||
}
|
}
|
||||||
@@ -186,7 +187,7 @@ int wxChoice::GetSelection() const
|
|||||||
|
|
||||||
int wxChoice::DoAppend(const wxString& title)
|
int wxChoice::DoAppend(const wxString& title)
|
||||||
{
|
{
|
||||||
wxAutoNSAutoreleasePool pool;
|
wxAutoNSAutoreleasePool pool;
|
||||||
NSMenu *nsmenu = [(NSPopUpButton*)m_cocoaNSView menu];
|
NSMenu *nsmenu = [(NSPopUpButton*)m_cocoaNSView menu];
|
||||||
NSMenuItem *item;
|
NSMenuItem *item;
|
||||||
if(m_sortedStrings)
|
if(m_sortedStrings)
|
||||||
|
@@ -1,20 +1,18 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: cocoa/combobox.mm
|
// Name: src/cocoa/combobox.mm
|
||||||
// Purpose: wxComboBox
|
// Purpose: wxComboBox
|
||||||
// Author: Ryan Norton
|
// Author: Ryan Norton
|
||||||
// Modified by:
|
// Modified by:
|
||||||
// Created: 2005/02/16
|
// Created: 2005/02/16
|
||||||
// RCS-ID: $Id$
|
// RCS-ID: $Id$
|
||||||
// Copyright: (c) 2003 David Elliott
|
// Copyright: (c) 2003 David Elliott
|
||||||
// Licence: wxWidgets licence
|
// Licence: wxWidgets licence
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
// #include "wx/wxprec.h"
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Impl notes:
|
// Impl notes:
|
||||||
// There is no custom data source because doing so unnecessarily sacrifices
|
// There is no custom data source because doing so unnecessarily sacrifices
|
||||||
// some native autocompletion behavior (we would have to make our own -
|
// some native autocompletion behavior (we would have to make our own -
|
||||||
// the SimpleComboBox sample does so in the developer folder that
|
// the SimpleComboBox sample does so in the developer folder that
|
||||||
// comes with OSX). One reason you might want this would be to have
|
// comes with OSX). One reason you might want this would be to have
|
||||||
// only one array or be able to display numbers returned by an NSNumber
|
// only one array or be able to display numbers returned by an NSNumber
|
||||||
@@ -28,9 +26,9 @@
|
|||||||
// doWxEvent is really hackish... but since there's only one event...
|
// doWxEvent is really hackish... but since there's only one event...
|
||||||
//
|
//
|
||||||
// Ideas for future improvement - other notes:
|
// Ideas for future improvement - other notes:
|
||||||
// Combox w/o wxCB_DROPDOWN doesn't seem to be implementable
|
// Combox w/o wxCB_DROPDOWN doesn't seem to be implementable
|
||||||
//wxCB_READONLY Same as wxCB_DROPDOWN but only the strings specified as the combobox choices can be selected, it is impossible to select (even from a program) a string which is not in the choices list.
|
//wxCB_READONLY Same as wxCB_DROPDOWN but only the strings specified as the combobox choices can be selected, it is impossible to select (even from a program) a string which is not in the choices list.
|
||||||
//wxCB_SORT is possible with data source
|
//wxCB_SORT is possible with data source
|
||||||
//
|
//
|
||||||
// setIntercellSpacing:/setItemHeight: to autoadjust to number of inserted items?
|
// setIntercellSpacing:/setItemHeight: to autoadjust to number of inserted items?
|
||||||
//
|
//
|
||||||
@@ -55,7 +53,7 @@
|
|||||||
NSString *lowercasePrefix = [prefix lowercaseString];
|
NSString *lowercasePrefix = [prefix lowercaseString];
|
||||||
NSEnumerator *stringEnum = [genres objectEnumerator];
|
NSEnumerator *stringEnum = [genres objectEnumerator];
|
||||||
while ((string = [stringEnum nextObject])) {
|
while ((string = [stringEnum nextObject])) {
|
||||||
if ([[string lowercaseString] hasPrefix: lowercasePrefix]) return string;
|
if ([[string lowercaseString] hasPrefix: lowercasePrefix]) return string;
|
||||||
}
|
}
|
||||||
return nil;
|
return nil;
|
||||||
}
|
}
|
||||||
@@ -68,17 +66,6 @@
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
// Name: cocoa/NSComboBox.mm
|
|
||||||
// Purpose: wxCocoaNSComboBox
|
|
||||||
// Author: Ryan Norton
|
|
||||||
// Modified by:
|
|
||||||
// Created: 2005/02/16
|
|
||||||
// RCS-ID: $Id:
|
|
||||||
// Copyright: (c) 2003 David Elliott
|
|
||||||
// Licence: wxWidgets licence
|
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
// declarations
|
// declarations
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
@@ -111,7 +98,7 @@ void wxCocoaNSComboBox::AssociateNSComboBox(WX_NSComboBox cocoaNSComboBox)
|
|||||||
if(cocoaNSComboBox)
|
if(cocoaNSComboBox)
|
||||||
{
|
{
|
||||||
sm_cocoaHash.insert(wxCocoaNSComboBoxHash::value_type(cocoaNSComboBox,this));
|
sm_cocoaHash.insert(wxCocoaNSComboBoxHash::value_type(cocoaNSComboBox,this));
|
||||||
|
|
||||||
[[NSNotificationCenter defaultCenter] addObserver:(id)cocoaNSComboBox selector:@selector(comboBoxSelectionDidChange:) name:@"NSComboBoxSelectionDidChangeNotification" object:cocoaNSComboBox];
|
[[NSNotificationCenter defaultCenter] addObserver:(id)cocoaNSComboBox selector:@selector(comboBoxSelectionDidChange:) name:@"NSComboBoxSelectionDidChangeNotification" object:cocoaNSComboBox];
|
||||||
[[NSNotificationCenter defaultCenter] addObserver:(id)cocoaNSComboBox selector:@selector(comboBoxSelectionDidChange:) name:@"NSComboBoxSelectionIsChangingNotification" object:cocoaNSComboBox];
|
[[NSNotificationCenter defaultCenter] addObserver:(id)cocoaNSComboBox selector:@selector(comboBoxSelectionDidChange:) name:@"NSComboBoxSelectionIsChangingNotification" object:cocoaNSComboBox];
|
||||||
[[NSNotificationCenter defaultCenter] addObserver:(id)cocoaNSComboBox selector:@selector(comboBoxSelectionDidChange:) name:@"NSComboBoxWillDismissNotification" object:cocoaNSComboBox];
|
[[NSNotificationCenter defaultCenter] addObserver:(id)cocoaNSComboBox selector:@selector(comboBoxSelectionDidChange:) name:@"NSComboBoxWillDismissNotification" object:cocoaNSComboBox];
|
||||||
@@ -211,7 +198,7 @@ bool wxComboBox::Create(wxWindow *parent, wxWindowID winid,
|
|||||||
wxAutoNSAutoreleasePool pool;
|
wxAutoNSAutoreleasePool pool;
|
||||||
if(!CreateControl(parent,winid,pos,size,style,validator,name))
|
if(!CreateControl(parent,winid,pos,size,style,validator,name))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
m_cocoaNSView = NULL;
|
m_cocoaNSView = NULL;
|
||||||
SetNSComboBox([[wxPoserNSComboBox alloc] initWithFrame:MakeDefaultNSRect(size)]);
|
SetNSComboBox([[wxPoserNSComboBox alloc] initWithFrame:MakeDefaultNSRect(size)]);
|
||||||
[m_cocoaNSView release];
|
[m_cocoaNSView release];
|
||||||
@@ -223,9 +210,9 @@ bool wxComboBox::Create(wxWindow *parent, wxWindowID winid,
|
|||||||
|
|
||||||
for(int i = 0; i < n; ++i)
|
for(int i = 0; i < n; ++i)
|
||||||
wxComboBox::DoAppend(choices[i]);
|
wxComboBox::DoAppend(choices[i]);
|
||||||
|
|
||||||
[GetNSComboBox() setCompletes:true]; //autocomplete :)
|
[GetNSComboBox() setCompletes:true]; //autocomplete :)
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -279,22 +266,29 @@ int wxComboBox::GetCount() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
wxString wxComboBox::GetString(int nIndex) const
|
wxString wxComboBox::GetString(int nIndex) const
|
||||||
{ return wxStringWithNSString([GetNSComboBox() itemObjectValueAtIndex:nIndex]); }
|
{
|
||||||
|
return wxStringWithNSString([GetNSComboBox() itemObjectValueAtIndex:nIndex]);
|
||||||
|
}
|
||||||
|
|
||||||
void wxComboBox::SetString(int nIndex, const wxString& szString)
|
void wxComboBox::SetString(int nIndex, const wxString& szString)
|
||||||
{
|
{
|
||||||
wxAutoNSAutoreleasePool pool;
|
wxAutoNSAutoreleasePool pool;
|
||||||
//FIXME: There appears to be no "set item data" method - maybe
|
//FIXME: There appears to be no "set item data" method - maybe
|
||||||
//an assignment would work?
|
//an assignment would work?
|
||||||
[GetNSComboBox() removeItemAtIndex:nIndex];
|
[GetNSComboBox() removeItemAtIndex:nIndex];
|
||||||
[GetNSComboBox() insertItemWithObjectValue:wxNSStringWithWxString(szString) atIndex:nIndex];
|
[GetNSComboBox() insertItemWithObjectValue:wxNSStringWithWxString(szString) atIndex:nIndex];
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::FindString(const wxString& szItem) const
|
int wxComboBox::FindString(const wxString& szItem, bool bCase) const
|
||||||
{ return [GetNSComboBox() indexOfItemWithObjectValue:wxNSStringWithWxString(szItem)]; }
|
{
|
||||||
|
// FIXME: use wxItemContainerImmutable::FindString for bCase parameter
|
||||||
|
return [GetNSComboBox() indexOfItemWithObjectValue:wxNSStringWithWxString(szItem)];
|
||||||
|
}
|
||||||
|
|
||||||
int wxComboBox::GetSelection() const
|
int wxComboBox::GetSelection() const
|
||||||
{ return [GetNSComboBox() indexOfSelectedItem]; }
|
{
|
||||||
|
return [GetNSComboBox() indexOfSelectedItem];
|
||||||
|
}
|
||||||
|
|
||||||
int wxComboBox::DoAppend(const wxString& szItem)
|
int wxComboBox::DoAppend(const wxString& szItem)
|
||||||
{
|
{
|
||||||
|
@@ -4,9 +4,9 @@
|
|||||||
// Author: David Elliott
|
// Author: David Elliott
|
||||||
// Modified by:
|
// Modified by:
|
||||||
// Created: 2003/03/18
|
// Created: 2003/03/18
|
||||||
// RCS-ID: $Id:
|
// Id: $Id$
|
||||||
// Copyright: (c) 2003 David Elliott
|
// Copyright: (c) 2003 David Elliott
|
||||||
// Licence: wxWidgets licence
|
// Licence: wxWidgets licence
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#include "wx/wxprec.h"
|
#include "wx/wxprec.h"
|
||||||
@@ -56,26 +56,26 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID winid,
|
|||||||
const wxString& name)
|
const wxString& name)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
wxLB_SINGLE
|
wxLB_SINGLE
|
||||||
Single-selection list.
|
Single-selection list.
|
||||||
|
|
||||||
wxLB_MULTIPLE
|
wxLB_MULTIPLE
|
||||||
Multiple-selection list: the user can toggle multiple items on and off.
|
Multiple-selection list: the user can toggle multiple items on and off.
|
||||||
|
|
||||||
wxLB_EXTENDED
|
wxLB_EXTENDED
|
||||||
Extended-selection list: the user can select multiple items using the SHIFT key and the mouse or special key combinations.
|
Extended-selection list: the user can select multiple items using the SHIFT key and the mouse or special key combinations.
|
||||||
|
|
||||||
wxLB_HSCROLL
|
wxLB_HSCROLL
|
||||||
Create horizontal scrollbar if contents are too wide (Windows only).
|
Create horizontal scrollbar if contents are too wide (Windows only).
|
||||||
|
|
||||||
wxLB_ALWAYS_SB
|
wxLB_ALWAYS_SB
|
||||||
Always show a vertical scrollbar.
|
Always show a vertical scrollbar.
|
||||||
|
|
||||||
wxLB_NEEDED_SB
|
wxLB_NEEDED_SB
|
||||||
Only create a vertical scrollbar if needed.
|
Only create a vertical scrollbar if needed.
|
||||||
|
|
||||||
wxLB_SORT
|
wxLB_SORT
|
||||||
The listbox contents are sorted in alphabetical order.
|
The listbox contents are sorted in alphabetical order.
|
||||||
*/
|
*/
|
||||||
wxAutoNSAutoreleasePool pool;
|
wxAutoNSAutoreleasePool pool;
|
||||||
if(!CreateControl(parent,winid,pos,size,style,validator,name))
|
if(!CreateControl(parent,winid,pos,size,style,validator,name))
|
||||||
@@ -113,9 +113,9 @@ The listbox contents are sorted in alphabetical order.
|
|||||||
// NSScrollView seems to be the only reasonable solution.
|
// NSScrollView seems to be the only reasonable solution.
|
||||||
CocoaCreateNSScrollView();
|
CocoaCreateNSScrollView();
|
||||||
SetInitialFrameRect(pos,size);
|
SetInitialFrameRect(pos,size);
|
||||||
|
|
||||||
// Set up extended/multiple selection flags
|
// Set up extended/multiple selection flags
|
||||||
if ((style & wxLB_EXTENDED) || (style & wxLB_MULTIPLE))
|
if ((style & wxLB_EXTENDED) || (style & wxLB_MULTIPLE))
|
||||||
//diff is that mult requires shift down for multi selection
|
//diff is that mult requires shift down for multi selection
|
||||||
[GetNSTableView() setAllowsMultipleSelection:true];
|
[GetNSTableView() setAllowsMultipleSelection:true];
|
||||||
|
|
||||||
@@ -184,7 +184,7 @@ void wxListBox::DoInsertItems(const wxArrayString& items, int pos)
|
|||||||
void wxListBox::DoSetItems(const wxArrayString& items, void **clientData)
|
void wxListBox::DoSetItems(const wxArrayString& items, void **clientData)
|
||||||
{
|
{
|
||||||
wxAutoNSAutoreleasePool pool;
|
wxAutoNSAutoreleasePool pool;
|
||||||
|
|
||||||
// Remove everything
|
// Remove everything
|
||||||
[m_cocoaItems removeAllObjects];
|
[m_cocoaItems removeAllObjects];
|
||||||
m_itemClientData.Clear();
|
m_itemClientData.Clear();
|
||||||
@@ -220,7 +220,7 @@ void wxListBox::Delete(int n)
|
|||||||
{
|
{
|
||||||
[m_cocoaItems removeObjectAtIndex:n];
|
[m_cocoaItems removeObjectAtIndex:n];
|
||||||
m_itemClientData.RemoveAt(n);
|
m_itemClientData.RemoveAt(n);
|
||||||
[GetNSTableView() reloadData];
|
[GetNSTableView() reloadData];
|
||||||
}
|
}
|
||||||
|
|
||||||
// accessing strings
|
// accessing strings
|
||||||
@@ -239,11 +239,12 @@ void wxListBox::SetString(int n, const wxString& s)
|
|||||||
wxAutoNSAutoreleasePool pool;
|
wxAutoNSAutoreleasePool pool;
|
||||||
[m_cocoaItems removeObjectAtIndex:n];
|
[m_cocoaItems removeObjectAtIndex:n];
|
||||||
[m_cocoaItems insertObject: wxNSStringWithWxString(s) atIndex: n];
|
[m_cocoaItems insertObject: wxNSStringWithWxString(s) atIndex: n];
|
||||||
[GetNSTableView() reloadData];
|
[GetNSTableView() reloadData];
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::FindString(const wxString& s) const
|
int wxListBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
|
// FIXME: use wxItemContainerImmutable::FindString for bCase parameter
|
||||||
wxAutoNSAutoreleasePool pool;
|
wxAutoNSAutoreleasePool pool;
|
||||||
return [m_cocoaItems indexOfObject:wxNSStringWithWxString(s)];
|
return [m_cocoaItems indexOfObject:wxNSStringWithWxString(s)];
|
||||||
}
|
}
|
||||||
@@ -257,8 +258,8 @@ int wxListBox::GetSelection() const
|
|||||||
int wxListBox::DoAppend(const wxString& item)
|
int wxListBox::DoAppend(const wxString& item)
|
||||||
{
|
{
|
||||||
wxAutoNSAutoreleasePool pool;
|
wxAutoNSAutoreleasePool pool;
|
||||||
[m_cocoaItems addObject:wxNSStringWithWxString(item)];
|
[m_cocoaItems addObject:wxNSStringWithWxString(item)];
|
||||||
[GetNSTableView() reloadData];
|
[GetNSTableView() reloadData];
|
||||||
m_itemClientData.Add(NULL);
|
m_itemClientData.Add(NULL);
|
||||||
return [m_cocoaItems count];
|
return [m_cocoaItems count];
|
||||||
}
|
}
|
||||||
|
@@ -34,18 +34,6 @@
|
|||||||
// implementation
|
// implementation
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
int wxRadioBoxBase::FindString(const wxString& s) const
|
|
||||||
{
|
|
||||||
int count = GetCount();
|
|
||||||
for ( int n = 0; n < count; n++ )
|
|
||||||
{
|
|
||||||
if ( GetString(n) == s )
|
|
||||||
return n;
|
|
||||||
}
|
|
||||||
|
|
||||||
return wxNOT_FOUND;
|
|
||||||
}
|
|
||||||
|
|
||||||
int wxRadioBoxBase::GetNextItem(int item, wxDirection dir, long style) const
|
int wxRadioBoxBase::GetNextItem(int item, wxDirection dir, long style) const
|
||||||
{
|
{
|
||||||
int count = GetCount(),
|
int count = GetCount(),
|
||||||
@@ -176,4 +164,3 @@ void wxRadioBoxBase::SetLabel(int n, const wxString& label)
|
|||||||
#endif // WXWIN_COMPATIBILITY_2_2
|
#endif // WXWIN_COMPATIBILITY_2_2
|
||||||
|
|
||||||
#endif // wxUSE_RADIOBOX
|
#endif // wxUSE_RADIOBOX
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: choice.cpp
|
// Name: src/gtk/choice.cpp
|
||||||
// Purpose:
|
// Purpose:
|
||||||
// Author: Robert Roebling
|
// Author: Robert Roebling
|
||||||
// Id: $Id$
|
// Id: $Id$
|
||||||
@@ -334,9 +334,9 @@ void wxChoice::Delete( int n )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxChoice::FindString( const wxString &string ) const
|
int wxChoice::FindString( const wxString &string, bool bCase ) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid choice") );
|
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid choice") );
|
||||||
|
|
||||||
// If you read this code once and you think you understand
|
// If you read this code once and you think you understand
|
||||||
// it, then you are very wrong. Robert Roebling.
|
// it, then you are very wrong. Robert Roebling.
|
||||||
@@ -360,7 +360,7 @@ int wxChoice::FindString( const wxString &string ) const
|
|||||||
#else
|
#else
|
||||||
wxString tmp( label->label );
|
wxString tmp( label->label );
|
||||||
#endif
|
#endif
|
||||||
if (string == tmp)
|
if (string.IsSameAs( tmp, bCase ))
|
||||||
return count;
|
return count;
|
||||||
|
|
||||||
child = child->next;
|
child = child->next;
|
||||||
@@ -372,7 +372,7 @@ int wxChoice::FindString( const wxString &string ) const
|
|||||||
|
|
||||||
int wxChoice::GetSelection() const
|
int wxChoice::GetSelection() const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid choice") );
|
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid choice") );
|
||||||
|
|
||||||
return m_selection_hack;
|
return m_selection_hack;
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: combobox.cpp
|
// Name: src/gtk/combobox.cpp
|
||||||
// Purpose:
|
// Purpose:
|
||||||
// Author: Robert Roebling
|
// Author: Robert Roebling
|
||||||
// Id: $Id$
|
// Id: $Id$
|
||||||
@@ -527,7 +527,7 @@ void wxComboBox::SetString(int n, const wxString &text)
|
|||||||
InvalidateBestSize();
|
InvalidateBestSize();
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::FindString( const wxString &item ) const
|
int wxComboBox::FindString( const wxString &item, bool bCase ) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid combobox") );
|
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid combobox") );
|
||||||
|
|
||||||
@@ -544,7 +544,7 @@ int wxComboBox::FindString( const wxString &item ) const
|
|||||||
#else
|
#else
|
||||||
wxString str( label->label );
|
wxString str( label->label );
|
||||||
#endif
|
#endif
|
||||||
if (item == str)
|
if (item.IsSameAs( str , bCase ) )
|
||||||
return count;
|
return count;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: listbox.cpp
|
// Name: src/gtk/listbox.cpp
|
||||||
// Purpose:
|
// Purpose:
|
||||||
// Author: Robert Roebling
|
// Author: Robert Roebling
|
||||||
// Id: $Id$
|
// Id: $Id$
|
||||||
@@ -931,7 +931,7 @@ void wxListBox::SetString( int n, const wxString &string )
|
|||||||
|
|
||||||
wxString wxListBox::GetString( int n ) const
|
wxString wxListBox::GetString( int n ) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_list != NULL, wxT(""), wxT("invalid listbox") );
|
wxCHECK_MSG( m_list != NULL, wxEmptyString, wxT("invalid listbox") );
|
||||||
|
|
||||||
GList *child = g_list_nth( m_list->children, n );
|
GList *child = g_list_nth( m_list->children, n );
|
||||||
if (child)
|
if (child)
|
||||||
@@ -941,7 +941,7 @@ wxString wxListBox::GetString( int n ) const
|
|||||||
|
|
||||||
wxFAIL_MSG(wxT("wrong listbox index"));
|
wxFAIL_MSG(wxT("wrong listbox index"));
|
||||||
|
|
||||||
return wxT("");
|
return wxEmptyString;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::GetCount() const
|
int wxListBox::GetCount() const
|
||||||
@@ -952,15 +952,15 @@ int wxListBox::GetCount() const
|
|||||||
return g_list_length(children);
|
return g_list_length(children);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::FindString( const wxString &item ) const
|
int wxListBox::FindString( const wxString &item, bool bCase ) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_list != NULL, -1, wxT("invalid listbox") );
|
wxCHECK_MSG( m_list != NULL, wxNOT_FOUND, wxT("invalid listbox") );
|
||||||
|
|
||||||
GList *child = m_list->children;
|
GList *child = m_list->children;
|
||||||
int count = 0;
|
int count = 0;
|
||||||
while (child)
|
while (child)
|
||||||
{
|
{
|
||||||
if ( GetRealLabel(child) == item )
|
if ( item.IsSameAs( GetRealLabel(child), bCase ) )
|
||||||
return count;
|
return count;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
@@ -1262,4 +1262,3 @@ wxListBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif // wxUSE_LISTBOX
|
#endif // wxUSE_LISTBOX
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: radiobox.cpp
|
// Name: src/gtk/radiobox.cpp
|
||||||
// Purpose:
|
// Purpose:
|
||||||
// Author: Robert Roebling
|
// Author: Robert Roebling
|
||||||
// Id: $Id$
|
// Id: $Id$
|
||||||
@@ -218,7 +218,7 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
|||||||
num_of_cols = num_per_major;
|
num_of_cols = num_per_major;
|
||||||
num_of_rows = m_majorDim;
|
num_of_rows = m_majorDim;
|
||||||
}
|
}
|
||||||
|
|
||||||
GtkRadioButton *m_radio = (GtkRadioButton*) NULL;
|
GtkRadioButton *m_radio = (GtkRadioButton*) NULL;
|
||||||
|
|
||||||
GtkWidget *table = gtk_table_new( num_of_rows, num_of_cols, FALSE );
|
GtkWidget *table = gtk_table_new( num_of_rows, num_of_cols, FALSE );
|
||||||
@@ -226,7 +226,7 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
|||||||
gtk_table_set_row_spacings( GTK_TABLE(table), 1 );
|
gtk_table_set_row_spacings( GTK_TABLE(table), 1 );
|
||||||
gtk_widget_show( table );
|
gtk_widget_show( table );
|
||||||
gtk_container_add( GTK_CONTAINER(m_widget), table );
|
gtk_container_add( GTK_CONTAINER(m_widget), table );
|
||||||
|
|
||||||
wxString label;
|
wxString label;
|
||||||
GSList *radio_button_group = (GSList *) NULL;
|
GSList *radio_button_group = (GSList *) NULL;
|
||||||
for (int i = 0; i < n; i++)
|
for (int i = 0; i < n; i++)
|
||||||
@@ -255,8 +255,8 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
|||||||
int right = (i%num_of_cols) + 1;
|
int right = (i%num_of_cols) + 1;
|
||||||
int top = i/num_of_cols;
|
int top = i/num_of_cols;
|
||||||
int bottom = (i/num_of_cols)+1;
|
int bottom = (i/num_of_cols)+1;
|
||||||
gtk_table_attach( GTK_TABLE(table), GTK_WIDGET(m_radio), left, right, top, bottom,
|
gtk_table_attach( GTK_TABLE(table), GTK_WIDGET(m_radio), left, right, top, bottom,
|
||||||
GTK_FILL, GTK_FILL, 1, 1 );
|
GTK_FILL, GTK_FILL, 1, 1 );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -264,8 +264,8 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
|||||||
int right = (i/num_of_rows) + 1;
|
int right = (i/num_of_rows) + 1;
|
||||||
int top = i%num_of_rows;
|
int top = i%num_of_rows;
|
||||||
int bottom = (i%num_of_rows)+1;
|
int bottom = (i%num_of_rows)+1;
|
||||||
gtk_table_attach( GTK_TABLE(table), GTK_WIDGET(m_radio), left, right, top, bottom,
|
gtk_table_attach( GTK_TABLE(table), GTK_WIDGET(m_radio), left, right, top, bottom,
|
||||||
GTK_FILL, GTK_FILL, 1, 1 );
|
GTK_FILL, GTK_FILL, 1, 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
ConnectWidget( GTK_WIDGET(m_radio) );
|
ConnectWidget( GTK_WIDGET(m_radio) );
|
||||||
@@ -328,7 +328,7 @@ bool wxRadioBox::Show( bool show )
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxRadioBox::FindString( const wxString &find ) const
|
int wxRadioBox::FindString( const wxString &find, bool bCase ) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid radiobox") );
|
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid radiobox") );
|
||||||
|
|
||||||
@@ -343,7 +343,7 @@ int wxRadioBox::FindString( const wxString &find ) const
|
|||||||
#else
|
#else
|
||||||
wxString str( label->label );
|
wxString str( label->label );
|
||||||
#endif
|
#endif
|
||||||
if (find == str)
|
if (find.IsSameAs( str, bCase ))
|
||||||
return count;
|
return count;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
@@ -678,4 +678,3 @@ void wxRadioBox::SetLabel( int item, const wxString& label )
|
|||||||
#endif // WXWIN_COMPATIBILITY_2_2
|
#endif // WXWIN_COMPATIBILITY_2_2
|
||||||
|
|
||||||
#endif // wxUSE_RADIOBOX
|
#endif // wxUSE_RADIOBOX
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: choice.cpp
|
// Name: src/gtk/choice.cpp
|
||||||
// Purpose:
|
// Purpose:
|
||||||
// Author: Robert Roebling
|
// Author: Robert Roebling
|
||||||
// Id: $Id$
|
// Id: $Id$
|
||||||
@@ -334,9 +334,9 @@ void wxChoice::Delete( int n )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxChoice::FindString( const wxString &string ) const
|
int wxChoice::FindString( const wxString &string, bool bCase ) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid choice") );
|
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid choice") );
|
||||||
|
|
||||||
// If you read this code once and you think you understand
|
// If you read this code once and you think you understand
|
||||||
// it, then you are very wrong. Robert Roebling.
|
// it, then you are very wrong. Robert Roebling.
|
||||||
@@ -360,7 +360,7 @@ int wxChoice::FindString( const wxString &string ) const
|
|||||||
#else
|
#else
|
||||||
wxString tmp( label->label );
|
wxString tmp( label->label );
|
||||||
#endif
|
#endif
|
||||||
if (string == tmp)
|
if (string.IsSameAs( tmp, bCase ))
|
||||||
return count;
|
return count;
|
||||||
|
|
||||||
child = child->next;
|
child = child->next;
|
||||||
@@ -372,7 +372,7 @@ int wxChoice::FindString( const wxString &string ) const
|
|||||||
|
|
||||||
int wxChoice::GetSelection() const
|
int wxChoice::GetSelection() const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid choice") );
|
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid choice") );
|
||||||
|
|
||||||
return m_selection_hack;
|
return m_selection_hack;
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: combobox.cpp
|
// Name: src/gtk/combobox.cpp
|
||||||
// Purpose:
|
// Purpose:
|
||||||
// Author: Robert Roebling
|
// Author: Robert Roebling
|
||||||
// Id: $Id$
|
// Id: $Id$
|
||||||
@@ -527,7 +527,7 @@ void wxComboBox::SetString(int n, const wxString &text)
|
|||||||
InvalidateBestSize();
|
InvalidateBestSize();
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::FindString( const wxString &item ) const
|
int wxComboBox::FindString( const wxString &item, bool bCase ) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid combobox") );
|
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid combobox") );
|
||||||
|
|
||||||
@@ -544,7 +544,7 @@ int wxComboBox::FindString( const wxString &item ) const
|
|||||||
#else
|
#else
|
||||||
wxString str( label->label );
|
wxString str( label->label );
|
||||||
#endif
|
#endif
|
||||||
if (item == str)
|
if (item.IsSameAs( str , bCase ) )
|
||||||
return count;
|
return count;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: listbox.cpp
|
// Name: src/gtk/listbox.cpp
|
||||||
// Purpose:
|
// Purpose:
|
||||||
// Author: Robert Roebling
|
// Author: Robert Roebling
|
||||||
// Id: $Id$
|
// Id: $Id$
|
||||||
@@ -931,7 +931,7 @@ void wxListBox::SetString( int n, const wxString &string )
|
|||||||
|
|
||||||
wxString wxListBox::GetString( int n ) const
|
wxString wxListBox::GetString( int n ) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_list != NULL, wxT(""), wxT("invalid listbox") );
|
wxCHECK_MSG( m_list != NULL, wxEmptyString, wxT("invalid listbox") );
|
||||||
|
|
||||||
GList *child = g_list_nth( m_list->children, n );
|
GList *child = g_list_nth( m_list->children, n );
|
||||||
if (child)
|
if (child)
|
||||||
@@ -941,7 +941,7 @@ wxString wxListBox::GetString( int n ) const
|
|||||||
|
|
||||||
wxFAIL_MSG(wxT("wrong listbox index"));
|
wxFAIL_MSG(wxT("wrong listbox index"));
|
||||||
|
|
||||||
return wxT("");
|
return wxEmptyString;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::GetCount() const
|
int wxListBox::GetCount() const
|
||||||
@@ -952,15 +952,15 @@ int wxListBox::GetCount() const
|
|||||||
return g_list_length(children);
|
return g_list_length(children);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::FindString( const wxString &item ) const
|
int wxListBox::FindString( const wxString &item, bool bCase ) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_list != NULL, -1, wxT("invalid listbox") );
|
wxCHECK_MSG( m_list != NULL, wxNOT_FOUND, wxT("invalid listbox") );
|
||||||
|
|
||||||
GList *child = m_list->children;
|
GList *child = m_list->children;
|
||||||
int count = 0;
|
int count = 0;
|
||||||
while (child)
|
while (child)
|
||||||
{
|
{
|
||||||
if ( GetRealLabel(child) == item )
|
if ( item.IsSameAs( GetRealLabel(child), bCase ) )
|
||||||
return count;
|
return count;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
@@ -1262,4 +1262,3 @@ wxListBox::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif // wxUSE_LISTBOX
|
#endif // wxUSE_LISTBOX
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: radiobox.cpp
|
// Name: src/gtk/radiobox.cpp
|
||||||
// Purpose:
|
// Purpose:
|
||||||
// Author: Robert Roebling
|
// Author: Robert Roebling
|
||||||
// Id: $Id$
|
// Id: $Id$
|
||||||
@@ -218,7 +218,7 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
|||||||
num_of_cols = num_per_major;
|
num_of_cols = num_per_major;
|
||||||
num_of_rows = m_majorDim;
|
num_of_rows = m_majorDim;
|
||||||
}
|
}
|
||||||
|
|
||||||
GtkRadioButton *m_radio = (GtkRadioButton*) NULL;
|
GtkRadioButton *m_radio = (GtkRadioButton*) NULL;
|
||||||
|
|
||||||
GtkWidget *table = gtk_table_new( num_of_rows, num_of_cols, FALSE );
|
GtkWidget *table = gtk_table_new( num_of_rows, num_of_cols, FALSE );
|
||||||
@@ -226,7 +226,7 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
|||||||
gtk_table_set_row_spacings( GTK_TABLE(table), 1 );
|
gtk_table_set_row_spacings( GTK_TABLE(table), 1 );
|
||||||
gtk_widget_show( table );
|
gtk_widget_show( table );
|
||||||
gtk_container_add( GTK_CONTAINER(m_widget), table );
|
gtk_container_add( GTK_CONTAINER(m_widget), table );
|
||||||
|
|
||||||
wxString label;
|
wxString label;
|
||||||
GSList *radio_button_group = (GSList *) NULL;
|
GSList *radio_button_group = (GSList *) NULL;
|
||||||
for (int i = 0; i < n; i++)
|
for (int i = 0; i < n; i++)
|
||||||
@@ -255,8 +255,8 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
|||||||
int right = (i%num_of_cols) + 1;
|
int right = (i%num_of_cols) + 1;
|
||||||
int top = i/num_of_cols;
|
int top = i/num_of_cols;
|
||||||
int bottom = (i/num_of_cols)+1;
|
int bottom = (i/num_of_cols)+1;
|
||||||
gtk_table_attach( GTK_TABLE(table), GTK_WIDGET(m_radio), left, right, top, bottom,
|
gtk_table_attach( GTK_TABLE(table), GTK_WIDGET(m_radio), left, right, top, bottom,
|
||||||
GTK_FILL, GTK_FILL, 1, 1 );
|
GTK_FILL, GTK_FILL, 1, 1 );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -264,8 +264,8 @@ bool wxRadioBox::Create( wxWindow *parent, wxWindowID id, const wxString& title,
|
|||||||
int right = (i/num_of_rows) + 1;
|
int right = (i/num_of_rows) + 1;
|
||||||
int top = i%num_of_rows;
|
int top = i%num_of_rows;
|
||||||
int bottom = (i%num_of_rows)+1;
|
int bottom = (i%num_of_rows)+1;
|
||||||
gtk_table_attach( GTK_TABLE(table), GTK_WIDGET(m_radio), left, right, top, bottom,
|
gtk_table_attach( GTK_TABLE(table), GTK_WIDGET(m_radio), left, right, top, bottom,
|
||||||
GTK_FILL, GTK_FILL, 1, 1 );
|
GTK_FILL, GTK_FILL, 1, 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
ConnectWidget( GTK_WIDGET(m_radio) );
|
ConnectWidget( GTK_WIDGET(m_radio) );
|
||||||
@@ -328,7 +328,7 @@ bool wxRadioBox::Show( bool show )
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxRadioBox::FindString( const wxString &find ) const
|
int wxRadioBox::FindString( const wxString &find, bool bCase ) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid radiobox") );
|
wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid radiobox") );
|
||||||
|
|
||||||
@@ -343,7 +343,7 @@ int wxRadioBox::FindString( const wxString &find ) const
|
|||||||
#else
|
#else
|
||||||
wxString str( label->label );
|
wxString str( label->label );
|
||||||
#endif
|
#endif
|
||||||
if (find == str)
|
if (find.IsSameAs( str, bCase ))
|
||||||
return count;
|
return count;
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
@@ -678,4 +678,3 @@ void wxRadioBox::SetLabel( int item, const wxString& label )
|
|||||||
#endif // WXWIN_COMPATIBILITY_2_2
|
#endif // WXWIN_COMPATIBILITY_2_2
|
||||||
|
|
||||||
#endif // wxUSE_RADIOBOX
|
#endif // wxUSE_RADIOBOX
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: choice.cpp
|
// Name: src/mac/carbon/choice.cpp
|
||||||
// Purpose: wxChoice
|
// Purpose: wxChoice
|
||||||
// Author: Stefan Csomor
|
// Author: Stefan Csomor
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -80,7 +80,7 @@ bool wxChoice::Create(wxWindow *parent, wxWindowID id,
|
|||||||
m_strings = wxArrayString(1) ; // autosort
|
m_strings = wxArrayString(1) ; // autosort
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
for ( int i = 0; i < n; i++ )
|
for ( int i = 0; i < n; i++ )
|
||||||
{
|
{
|
||||||
Append(choices[i]);
|
Append(choices[i]);
|
||||||
@@ -97,7 +97,7 @@ int wxChoice::DoAppend(const wxString& item)
|
|||||||
#if wxUSE_STL
|
#if wxUSE_STL
|
||||||
wxArrayString::iterator insertPoint;
|
wxArrayString::iterator insertPoint;
|
||||||
size_t index;
|
size_t index;
|
||||||
|
|
||||||
if (GetWindowStyle() & wxCB_SORT)
|
if (GetWindowStyle() & wxCB_SORT)
|
||||||
{
|
{
|
||||||
insertPoint = std::lower_bound( m_strings.begin(), m_strings.end(), item );
|
insertPoint = std::lower_bound( m_strings.begin(), m_strings.end(), item );
|
||||||
@@ -195,9 +195,9 @@ int wxChoice::GetCount() const
|
|||||||
return m_strings.GetCount() ;
|
return m_strings.GetCount() ;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxChoice::FindString(const wxString& s) const
|
int wxChoice::FindString(const wxString& s, bool bCase ) const
|
||||||
{
|
{
|
||||||
return m_strings.Index( s , true , false) ;
|
return m_strings.Index( s , bCase ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxChoice::SetString(int n, const wxString& s)
|
void wxChoice::SetString(int n, const wxString& s)
|
||||||
@@ -209,7 +209,7 @@ void wxChoice::SetString(int n, const wxString& s)
|
|||||||
|
|
||||||
wxString wxChoice::GetString(int n) const
|
wxString wxChoice::GetString(int n) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( n >= 0 && (size_t)n < m_strings.GetCount(), _T(""),
|
wxCHECK_MSG( n >= 0 && (size_t)n < m_strings.GetCount(), wxEmptyString,
|
||||||
_T("wxChoice::GetString(): invalid index") );
|
_T("wxChoice::GetString(): invalid index") );
|
||||||
|
|
||||||
return m_strings[n] ;
|
return m_strings[n] ;
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: combobox.cpp
|
// Name: src/mac/carbon/combobox.cpp
|
||||||
// Purpose: wxComboBox class
|
// Purpose: wxComboBox class
|
||||||
// Author: Stefan Csomor
|
// Author: Stefan Csomor
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -85,7 +85,7 @@ protected:
|
|||||||
if (m_cb->GetEventHandler()->ProcessEvent(kevt))
|
if (m_cb->GetEventHandler()->ProcessEvent(kevt))
|
||||||
// If the event was handled and not skipped then we're done
|
// If the event was handled and not skipped then we're done
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if ( event.GetKeyCode() == WXK_RETURN )
|
if ( event.GetKeyCode() == WXK_RETURN )
|
||||||
{
|
{
|
||||||
wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_cb->GetId());
|
wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_cb->GetId());
|
||||||
@@ -136,14 +136,14 @@ protected:
|
|||||||
if (! m_cb->GetEventHandler()->ProcessEvent(event))
|
if (! m_cb->GetEventHandler()->ProcessEvent(event))
|
||||||
event.Skip();
|
event.Skip();
|
||||||
}
|
}
|
||||||
|
|
||||||
void OnText( wxCommandEvent& event )
|
void OnText( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
event.SetEventObject(m_cb);
|
event.SetEventObject(m_cb);
|
||||||
event.SetId(m_cb->GetId());
|
event.SetId(m_cb->GetId());
|
||||||
if (! m_cb->GetEventHandler()->ProcessEvent(event))
|
if (! m_cb->GetEventHandler()->ProcessEvent(event))
|
||||||
event.Skip();
|
event.Skip();
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
wxComboBox *m_cb;
|
wxComboBox *m_cb;
|
||||||
@@ -381,7 +381,7 @@ bool wxComboBox::Create(wxWindow *parent, wxWindowID id,
|
|||||||
|
|
||||||
SetBestSize(size); // Needed because it is a wxControlWithItems
|
SetBestSize(size); // Needed because it is a wxControlWithItems
|
||||||
SetStringSelection(value);
|
SetStringSelection(value);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -568,9 +568,9 @@ void wxComboBox::SetSelection(int n)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::FindString(const wxString& s) const
|
int wxComboBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
return m_choice->FindString( s );
|
return m_choice->FindString( s, bCase );
|
||||||
}
|
}
|
||||||
|
|
||||||
wxString wxComboBox::GetString(int n) const
|
wxString wxComboBox::GetString(int n) const
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: combobox.cpp
|
// Name: src/mac/carbon/combobox.cpp
|
||||||
// Purpose: wxComboBox class
|
// Purpose: wxComboBox class
|
||||||
// Author: Stefan Csomor
|
// Author: Stefan Csomor
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -677,17 +677,17 @@ void wxComboBox::SetSelection(int n)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::FindString(const wxString& s) const
|
int wxComboBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
#if USE_HICOMBOBOX
|
#if USE_HICOMBOBOX
|
||||||
for( int i = 0 ; i < GetCount() ; i++ )
|
for( int i = 0 ; i < GetCount() ; i++ )
|
||||||
{
|
{
|
||||||
if ( GetString( i ).IsSameAs(s, false) )
|
if ( GetString( i ).IsSameAs(s, bCase) )
|
||||||
return i ;
|
return i ;
|
||||||
}
|
}
|
||||||
return wxNOT_FOUND ;
|
return wxNOT_FOUND ;
|
||||||
#else
|
#else
|
||||||
return m_choice->FindString( s );
|
return m_choice->FindString( s, bCase );
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: listbox.cpp
|
// Name: src/mac/carbon/listbox.cpp
|
||||||
// Purpose: wxListBox
|
// Purpose: wxListBox
|
||||||
// Author: Stefan Csomor
|
// Author: Stefan Csomor
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -380,9 +380,8 @@ void wxListBox::DoSetItems(const wxArrayString& choices, void** clientData)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::FindString(const wxString& s) const
|
int wxListBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
|
|
||||||
if ( s.Right(1) == wxT("*") )
|
if ( s.Right(1) == wxT("*") )
|
||||||
{
|
{
|
||||||
wxString search = s.Left( s.Length() - 1 ) ;
|
wxString search = s.Left( s.Length() - 1 ) ;
|
||||||
@@ -394,7 +393,7 @@ int wxListBox::FindString(const wxString& s) const
|
|||||||
{
|
{
|
||||||
wxMacStringToPascal( m_stringArray[i].Left( len ) , s1 ) ;
|
wxMacStringToPascal( m_stringArray[i].Left( len ) , s1 ) ;
|
||||||
|
|
||||||
if ( EqualString( s1 , s2 , false , false ) )
|
if ( EqualString( s1 , s2 , bCase , false ) )
|
||||||
return i ;
|
return i ;
|
||||||
}
|
}
|
||||||
if ( s.Left(1) == wxT("*") && s.Length() > 1 )
|
if ( s.Left(1) == wxT("*") && s.Length() > 1 )
|
||||||
@@ -419,11 +418,11 @@ int wxListBox::FindString(const wxString& s) const
|
|||||||
{
|
{
|
||||||
wxMacStringToPascal( m_stringArray[i] , s1 ) ;
|
wxMacStringToPascal( m_stringArray[i] , s1 ) ;
|
||||||
|
|
||||||
if ( EqualString( s1 , s2 , false , false ) )
|
if ( EqualString( s1 , s2 , bCase , false ) )
|
||||||
return i ;
|
return i ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1;
|
return wxNOT_FOUND;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::Clear()
|
void wxListBox::Clear()
|
||||||
@@ -872,4 +871,3 @@ void wxListBox::OnChar(wxKeyEvent& event)
|
|||||||
#endif // !TARGET_API_MAC_OSX
|
#endif // !TARGET_API_MAC_OSX
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: choice.cpp
|
// Name: src/mac/classic/choice.cpp
|
||||||
// Purpose: wxChoice
|
// Purpose: wxChoice
|
||||||
// Author: Stefan Csomor
|
// Author: Stefan Csomor
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -171,16 +171,6 @@ int wxChoice::GetCount() const
|
|||||||
return m_strings.GetCount() ;
|
return m_strings.GetCount() ;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxChoice::FindString(const wxString& s) const
|
|
||||||
{
|
|
||||||
for( int i = 0 ; i < GetCount() ; i++ )
|
|
||||||
{
|
|
||||||
if ( GetString( i ).IsSameAs(s, false) )
|
|
||||||
return i ;
|
|
||||||
}
|
|
||||||
return wxNOT_FOUND ;
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxChoice::SetString(int n, const wxString& s)
|
void wxChoice::SetString(int n, const wxString& s)
|
||||||
{
|
{
|
||||||
wxFAIL_MSG(wxT("wxChoice::SetString() not yet implemented"));
|
wxFAIL_MSG(wxT("wxChoice::SetString() not yet implemented"));
|
||||||
@@ -192,7 +182,7 @@ void wxChoice::SetString(int n, const wxString& s)
|
|||||||
|
|
||||||
wxString wxChoice::GetString(int n) const
|
wxString wxChoice::GetString(int n) const
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( n >= 0 && (size_t)n < m_strings.GetCount(), _T(""),
|
wxCHECK_MSG( n >= 0 && (size_t)n < m_strings.GetCount(), wxEmptyString,
|
||||||
_T("wxChoice::GetString(): invalid index") );
|
_T("wxChoice::GetString(): invalid index") );
|
||||||
|
|
||||||
return m_strings[n] ;
|
return m_strings[n] ;
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: combobox.cpp
|
// Name: src/mac/classic/combobox.cpp
|
||||||
// Purpose: wxComboBox class
|
// Purpose: wxComboBox class
|
||||||
// Author: Stefan Csomor
|
// Author: Stefan Csomor
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -486,9 +486,9 @@ void wxComboBox::SetSelection(int n)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::FindString(const wxString& s) const
|
int wxComboBox::FindString(const wxString& s, bool bCase ) const
|
||||||
{
|
{
|
||||||
return m_choice->FindString( s );
|
return m_choice->FindString( s , bCase );
|
||||||
}
|
}
|
||||||
|
|
||||||
wxString wxComboBox::GetString(int n) const
|
wxString wxComboBox::GetString(int n) const
|
||||||
@@ -581,4 +581,3 @@ void wxComboBox::MacHandleControlClick( WXWidget WXUNUSED(control) , wxInt16 WXU
|
|||||||
event.SetString(GetStringSelection());
|
event.SetString(GetStringSelection());
|
||||||
ProcessCommand(event);
|
ProcessCommand(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: listbox.cpp
|
// Name: src/mac/classic/listbox.cpp
|
||||||
// Purpose: wxListBox
|
// Purpose: wxListBox
|
||||||
// Author: Stefan Csomor
|
// Author: Stefan Csomor
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -70,7 +70,7 @@ static pascal void wxMacListDefinition( short message, Boolean isSelected, Rect
|
|||||||
list = (wxListBox*) GetControlReference( (ControlHandle) GetListRefCon(listHandle) );
|
list = (wxListBox*) GetControlReference( (ControlHandle) GetListRefCon(listHandle) );
|
||||||
if ( list == NULL )
|
if ( list == NULL )
|
||||||
return ;
|
return ;
|
||||||
|
|
||||||
GrafPtr savePort;
|
GrafPtr savePort;
|
||||||
GrafPtr grafPtr;
|
GrafPtr grafPtr;
|
||||||
RgnHandle savedClipRegion;
|
RgnHandle savedClipRegion;
|
||||||
@@ -79,29 +79,29 @@ static pascal void wxMacListDefinition( short message, Boolean isSelected, Rect
|
|||||||
SetPort((**listHandle).port);
|
SetPort((**listHandle).port);
|
||||||
grafPtr = (**listHandle).port ;
|
grafPtr = (**listHandle).port ;
|
||||||
// typecast our refCon
|
// typecast our refCon
|
||||||
|
|
||||||
// Calculate the cell rect.
|
// Calculate the cell rect.
|
||||||
|
|
||||||
switch( message ) {
|
switch( message ) {
|
||||||
case lInitMsg:
|
case lInitMsg:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case lCloseMsg:
|
case lCloseMsg:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case lDrawMsg:
|
case lDrawMsg:
|
||||||
{
|
{
|
||||||
const wxString linetext = list->m_stringArray[cell.v] ;
|
const wxString linetext = list->m_stringArray[cell.v] ;
|
||||||
|
|
||||||
// Save the current clip region, and set the clip region to the area we are about
|
// Save the current clip region, and set the clip region to the area we are about
|
||||||
// to draw.
|
// to draw.
|
||||||
|
|
||||||
savedClipRegion = NewRgn();
|
savedClipRegion = NewRgn();
|
||||||
GetClip( savedClipRegion );
|
GetClip( savedClipRegion );
|
||||||
|
|
||||||
ClipRect( drawRect );
|
ClipRect( drawRect );
|
||||||
EraseRect( drawRect );
|
EraseRect( drawRect );
|
||||||
|
|
||||||
const wxFont& font = list->GetFont();
|
const wxFont& font = list->GetFont();
|
||||||
if ( font.Ok() )
|
if ( font.Ok() )
|
||||||
{
|
{
|
||||||
@@ -115,50 +115,50 @@ static pascal void wxMacListDefinition( short message, Boolean isSelected, Rect
|
|||||||
::TextSize( 9 );
|
::TextSize( 9 );
|
||||||
::TextFace( 0 ) ;
|
::TextFace( 0 ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if TARGET_CARBON
|
#if TARGET_CARBON
|
||||||
{
|
{
|
||||||
Rect frame = { drawRect->top, drawRect->left + 4,
|
Rect frame = { drawRect->top, drawRect->left + 4,
|
||||||
drawRect->top + kwxMacListItemHeight, drawRect->right + 10000 } ;
|
drawRect->top + kwxMacListItemHeight, drawRect->right + 10000 } ;
|
||||||
CFMutableStringRef mString = CFStringCreateMutableCopy( NULL , 0 , wxMacCFStringHolder(linetext , list->GetFont().GetEncoding()) ) ;
|
CFMutableStringRef mString = CFStringCreateMutableCopy( NULL , 0 , wxMacCFStringHolder(linetext , list->GetFont().GetEncoding()) ) ;
|
||||||
::TruncateThemeText( mString , kThemeCurrentPortFont, kThemeStateActive, drawRect->right - drawRect->left , truncEnd , NULL ) ;
|
::TruncateThemeText( mString , kThemeCurrentPortFont, kThemeStateActive, drawRect->right - drawRect->left , truncEnd , NULL ) ;
|
||||||
::DrawThemeTextBox( mString,
|
::DrawThemeTextBox( mString,
|
||||||
kThemeCurrentPortFont,
|
kThemeCurrentPortFont,
|
||||||
kThemeStateActive,
|
kThemeStateActive,
|
||||||
false,
|
false,
|
||||||
&frame,
|
&frame,
|
||||||
teJustLeft,
|
teJustLeft,
|
||||||
nil );
|
nil );
|
||||||
CFRelease( mString ) ;
|
CFRelease( mString ) ;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
{
|
{
|
||||||
wxCharBuffer text = linetext.mb_str( wxConvLocal) ;
|
wxCharBuffer text = linetext.mb_str( wxConvLocal) ;
|
||||||
MoveTo(drawRect->left + 4 , drawRect->top + 10 );
|
MoveTo(drawRect->left + 4 , drawRect->top + 10 );
|
||||||
DrawText(text, 0 , strlen(text) );
|
DrawText(text, 0 , strlen(text) );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
// If the cell is hilited, do the hilite now. Paint the cell contents with the
|
// If the cell is hilited, do the hilite now. Paint the cell contents with the
|
||||||
// appropriate QuickDraw transform mode.
|
// appropriate QuickDraw transform mode.
|
||||||
|
|
||||||
if( isSelected ) {
|
if( isSelected ) {
|
||||||
savedPenMode = GetPortPenMode( (CGrafPtr) grafPtr );
|
savedPenMode = GetPortPenMode( (CGrafPtr) grafPtr );
|
||||||
SetPortPenMode( (CGrafPtr)grafPtr, hilitetransfermode );
|
SetPortPenMode( (CGrafPtr)grafPtr, hilitetransfermode );
|
||||||
PaintRect( drawRect );
|
PaintRect( drawRect );
|
||||||
SetPortPenMode( (CGrafPtr)grafPtr, savedPenMode );
|
SetPortPenMode( (CGrafPtr)grafPtr, savedPenMode );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Restore the saved clip region.
|
// Restore the saved clip region.
|
||||||
|
|
||||||
SetClip( savedClipRegion );
|
SetClip( savedClipRegion );
|
||||||
DisposeRgn( savedClipRegion );
|
DisposeRgn( savedClipRegion );
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case lHiliteMsg:
|
case lHiliteMsg:
|
||||||
|
|
||||||
// Hilite or unhilite the cell. Paint the cell contents with the
|
// Hilite or unhilite the cell. Paint the cell contents with the
|
||||||
// appropriate QuickDraw transform mode.
|
// appropriate QuickDraw transform mode.
|
||||||
|
|
||||||
GetPort( &grafPtr );
|
GetPort( &grafPtr );
|
||||||
savedPenMode = GetPortPenMode( (CGrafPtr)grafPtr );
|
savedPenMode = GetPortPenMode( (CGrafPtr)grafPtr );
|
||||||
SetPortPenMode( (CGrafPtr)grafPtr, hilitetransfermode );
|
SetPortPenMode( (CGrafPtr)grafPtr, hilitetransfermode );
|
||||||
@@ -220,9 +220,9 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID id,
|
|||||||
|
|
||||||
Rect bounds ;
|
Rect bounds ;
|
||||||
Str255 title ;
|
Str255 title ;
|
||||||
|
|
||||||
MacPreControlCreate( parent , id , wxEmptyString , pos , size ,style, validator , name , &bounds , title ) ;
|
MacPreControlCreate( parent , id , wxEmptyString , pos , size ,style, validator , name , &bounds , title ) ;
|
||||||
|
|
||||||
ListDefSpec listDef;
|
ListDefSpec listDef;
|
||||||
listDef.defType = kListDefUserProcType;
|
listDef.defType = kListDefUserProcType;
|
||||||
if ( macListDefUPP == NULL )
|
if ( macListDefUPP == NULL )
|
||||||
@@ -230,7 +230,7 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID id,
|
|||||||
macListDefUPP = NewListDefUPP( wxMacListDefinition );
|
macListDefUPP = NewListDefUPP( wxMacListDefinition );
|
||||||
}
|
}
|
||||||
listDef.u.userProc = macListDefUPP ;
|
listDef.u.userProc = macListDefUPP ;
|
||||||
|
|
||||||
Str255 fontName ;
|
Str255 fontName ;
|
||||||
SInt16 fontSize ;
|
SInt16 fontSize ;
|
||||||
Style fontStyle ;
|
Style fontStyle ;
|
||||||
@@ -240,7 +240,7 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID id,
|
|||||||
GetFontName( kFontIDMonaco , fontName ) ;
|
GetFontName( kFontIDMonaco , fontName ) ;
|
||||||
fontSize = 9 ;
|
fontSize = 9 ;
|
||||||
fontStyle = normal ;
|
fontStyle = normal ;
|
||||||
#endif
|
#endif
|
||||||
SetFont( wxFont (fontSize, wxSWISS, wxNORMAL, wxNORMAL , false , wxMacMakeStringFromPascal( fontName ) ) ) ;
|
SetFont( wxFont (fontSize, wxSWISS, wxNORMAL, wxNORMAL , false , wxMacMakeStringFromPascal( fontName ) ) ) ;
|
||||||
#if TARGET_CARBON
|
#if TARGET_CARBON
|
||||||
Size asize;
|
Size asize;
|
||||||
@@ -260,7 +260,7 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID id,
|
|||||||
long result ;
|
long result ;
|
||||||
wxStAppResource resload ;
|
wxStAppResource resload ;
|
||||||
m_macControl = (WXWidget) ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()) , &bounds , title , false ,
|
m_macControl = (WXWidget) ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()) , &bounds , title , false ,
|
||||||
(style & wxLB_HSCROLL) ? kwxMacListWithVerticalAndHorizontalScrollbar : kwxMacListWithVerticalScrollbar ,
|
(style & wxLB_HSCROLL) ? kwxMacListWithVerticalAndHorizontalScrollbar : kwxMacListWithVerticalScrollbar ,
|
||||||
0 , 0, kControlListBoxProc , (long) this ) ;
|
0 , 0, kControlListBoxProc , (long) this ) ;
|
||||||
::GetControlData( (ControlHandle) m_macControl , kControlNoPart , kControlListBoxListHandleTag ,
|
::GetControlData( (ControlHandle) m_macControl , kControlNoPart , kControlListBoxListHandleTag ,
|
||||||
sizeof( ListHandle ) , (char*) &m_macList , &result ) ;
|
sizeof( ListHandle ) , (char*) &m_macList , &result ) ;
|
||||||
@@ -412,7 +412,7 @@ void wxListBox::DoSetItems(const wxArrayString& choices, void** clientData)
|
|||||||
MacSetRedraw( false ) ;
|
MacSetRedraw( false ) ;
|
||||||
Clear() ;
|
Clear() ;
|
||||||
int n = choices.GetCount();
|
int n = choices.GetCount();
|
||||||
|
|
||||||
for( int i = 0 ; i < n ; ++i )
|
for( int i = 0 ; i < n ; ++i )
|
||||||
{
|
{
|
||||||
if ( clientData )
|
if ( clientData )
|
||||||
@@ -427,7 +427,7 @@ void wxListBox::DoSetItems(const wxArrayString& choices, void** clientData)
|
|||||||
else
|
else
|
||||||
Append( choices[i] ) ;
|
Append( choices[i] ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if wxUSE_OWNER_DRAWN
|
#if wxUSE_OWNER_DRAWN
|
||||||
if ( m_windowStyle & wxLB_OWNERDRAW ) {
|
if ( m_windowStyle & wxLB_OWNERDRAW ) {
|
||||||
// first delete old items
|
// first delete old items
|
||||||
@@ -437,7 +437,7 @@ void wxListBox::DoSetItems(const wxArrayString& choices, void** clientData)
|
|||||||
m_aItems[ui] = NULL;
|
m_aItems[ui] = NULL;
|
||||||
}
|
}
|
||||||
m_aItems.Empty();
|
m_aItems.Empty();
|
||||||
|
|
||||||
// then create new ones
|
// then create new ones
|
||||||
for ( ui = 0; ui < (size_t)m_noItems; ui++ ) {
|
for ( ui = 0; ui < (size_t)m_noItems; ui++ ) {
|
||||||
wxOwnerDrawn *pNewItem = CreateItem(ui);
|
wxOwnerDrawn *pNewItem = CreateItem(ui);
|
||||||
@@ -454,21 +454,20 @@ bool wxListBox::HasMultipleSelection() const
|
|||||||
return (m_windowStyle & wxLB_MULTIPLE) || (m_windowStyle & wxLB_EXTENDED);
|
return (m_windowStyle & wxLB_MULTIPLE) || (m_windowStyle & wxLB_EXTENDED);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::FindString(const wxString& s) const
|
int wxListBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
|
|
||||||
if ( s.Right(1) == wxT("*") )
|
if ( s.Right(1) == wxT("*") )
|
||||||
{
|
{
|
||||||
wxString search = s.Left( s.Length() - 1 ) ;
|
wxString search = s.Left( s.Length() - 1 ) ;
|
||||||
int len = search.Length() ;
|
int len = search.Length() ;
|
||||||
Str255 s1 , s2 ;
|
Str255 s1 , s2 ;
|
||||||
wxMacStringToPascal( search , s2 ) ;
|
wxMacStringToPascal( search , s2 ) ;
|
||||||
|
|
||||||
for ( int i = 0 ; i < m_noItems ; ++ i )
|
for ( int i = 0 ; i < m_noItems ; ++ i )
|
||||||
{
|
{
|
||||||
wxMacStringToPascal( m_stringArray[i].Left( len ) , s1 ) ;
|
wxMacStringToPascal( m_stringArray[i].Left( len ) , s1 ) ;
|
||||||
|
|
||||||
if ( EqualString( s1 , s2 , false , false ) )
|
if ( EqualString( s1 , s2 , bCase , false ) )
|
||||||
return i ;
|
return i ;
|
||||||
}
|
}
|
||||||
if ( s.Left(1) == wxT("*") && s.Length() > 1 )
|
if ( s.Left(1) == wxT("*") && s.Length() > 1 )
|
||||||
@@ -481,23 +480,24 @@ int wxListBox::FindString(const wxString& s) const
|
|||||||
return i ;
|
return i ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Str255 s1 , s2 ;
|
Str255 s1 , s2 ;
|
||||||
|
|
||||||
wxMacStringToPascal( s , s2 ) ;
|
wxMacStringToPascal( s , s2 ) ;
|
||||||
|
|
||||||
for ( int i = 0 ; i < m_noItems ; ++ i )
|
for ( int i = 0 ; i < m_noItems ; ++ i )
|
||||||
{
|
{
|
||||||
wxMacStringToPascal( m_stringArray[i] , s1 ) ;
|
wxMacStringToPascal( m_stringArray[i] , s1 ) ;
|
||||||
|
|
||||||
if ( EqualString( s1 , s2 , false , false ) )
|
if ( EqualString( s1 , s2 , bCase , false ) )
|
||||||
return i ;
|
return i ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1;
|
|
||||||
|
return wxNOT_FOUND;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::Clear()
|
void wxListBox::Clear()
|
||||||
@@ -521,7 +521,7 @@ bool wxListBox::IsSelected(int N) const
|
|||||||
{
|
{
|
||||||
wxCHECK_MSG( N >= 0 && N < m_noItems, FALSE,
|
wxCHECK_MSG( N >= 0 && N < m_noItems, FALSE,
|
||||||
wxT("invalid index in wxListBox::Selected") );
|
wxT("invalid index in wxListBox::Selected") );
|
||||||
|
|
||||||
return MacIsSelected( N ) ;
|
return MacIsSelected( N ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -529,7 +529,7 @@ void *wxListBox::DoGetItemClientData(int N) const
|
|||||||
{
|
{
|
||||||
wxCHECK_MSG( N >= 0 && N < m_noItems, NULL,
|
wxCHECK_MSG( N >= 0 && N < m_noItems, NULL,
|
||||||
wxT("invalid index in wxListBox::GetClientData"));
|
wxT("invalid index in wxListBox::GetClientData"));
|
||||||
|
|
||||||
return (void *)m_dataArray[N];
|
return (void *)m_dataArray[N];
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -542,7 +542,7 @@ void wxListBox::DoSetItemClientData(int N, void *Client_data)
|
|||||||
{
|
{
|
||||||
wxCHECK_RET( N >= 0 && N < m_noItems,
|
wxCHECK_RET( N >= 0 && N < m_noItems,
|
||||||
wxT("invalid index in wxListBox::SetClientData") );
|
wxT("invalid index in wxListBox::SetClientData") );
|
||||||
|
|
||||||
#if wxUSE_OWNER_DRAWN
|
#if wxUSE_OWNER_DRAWN
|
||||||
if ( m_windowStyle & wxLB_OWNERDRAW )
|
if ( m_windowStyle & wxLB_OWNERDRAW )
|
||||||
{
|
{
|
||||||
@@ -552,7 +552,7 @@ void wxListBox::DoSetItemClientData(int N, void *Client_data)
|
|||||||
}
|
}
|
||||||
#endif // wxUSE_OWNER_DRAWN
|
#endif // wxUSE_OWNER_DRAWN
|
||||||
wxASSERT_MSG( m_dataArray.GetCount() >= (size_t) N , wxT("invalid client_data array") ) ;
|
wxASSERT_MSG( m_dataArray.GetCount() >= (size_t) N , wxT("invalid client_data array") ) ;
|
||||||
|
|
||||||
if ( m_dataArray.GetCount() > (size_t) N )
|
if ( m_dataArray.GetCount() > (size_t) N )
|
||||||
{
|
{
|
||||||
m_dataArray[N] = (char*) Client_data ;
|
m_dataArray[N] = (char*) Client_data ;
|
||||||
@@ -583,25 +583,25 @@ int wxListBox::GetSelection() const
|
|||||||
// Find string for position
|
// Find string for position
|
||||||
wxString wxListBox::GetString(int N) const
|
wxString wxListBox::GetString(int N) const
|
||||||
{
|
{
|
||||||
return m_stringArray[N] ;
|
return m_stringArray[N] ;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::DoInsertItems(const wxArrayString& items, int pos)
|
void wxListBox::DoInsertItems(const wxArrayString& items, int pos)
|
||||||
{
|
{
|
||||||
wxCHECK_RET( pos >= 0 && pos <= m_noItems,
|
wxCHECK_RET( pos >= 0 && pos <= m_noItems,
|
||||||
wxT("invalid index in wxListBox::InsertItems") );
|
wxT("invalid index in wxListBox::InsertItems") );
|
||||||
|
|
||||||
InvalidateBestSize();
|
InvalidateBestSize();
|
||||||
|
|
||||||
int nItems = items.GetCount();
|
int nItems = items.GetCount();
|
||||||
|
|
||||||
for ( int i = 0 ; i < nItems ; i++ )
|
for ( int i = 0 ; i < nItems ; i++ )
|
||||||
{
|
{
|
||||||
m_stringArray.Insert( items[i] , pos + i ) ;
|
m_stringArray.Insert( items[i] , pos + i ) ;
|
||||||
m_dataArray.Insert( NULL , pos + i ) ;
|
m_dataArray.Insert( NULL , pos + i ) ;
|
||||||
MacInsert( pos + i , items[i] ) ;
|
MacInsert( pos + i , items[i] ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_noItems += nItems;
|
m_noItems += nItems;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -616,10 +616,10 @@ wxSize wxListBox::DoGetBestSize() const
|
|||||||
int lbWidth = 100; // some defaults
|
int lbWidth = 100; // some defaults
|
||||||
int lbHeight = 110;
|
int lbHeight = 110;
|
||||||
int wLine;
|
int wLine;
|
||||||
|
|
||||||
{
|
{
|
||||||
wxMacPortStateHelper st( UMAGetWindowPort( (WindowRef) MacGetRootWindow() ) ) ;
|
wxMacPortStateHelper st( UMAGetWindowPort( (WindowRef) MacGetRootWindow() ) ) ;
|
||||||
|
|
||||||
if ( m_font.Ok() )
|
if ( m_font.Ok() )
|
||||||
{
|
{
|
||||||
::TextFont( m_font.GetMacFontNum() ) ;
|
::TextFont( m_font.GetMacFontNum() ) ;
|
||||||
@@ -632,7 +632,7 @@ wxSize wxListBox::DoGetBestSize() const
|
|||||||
::TextSize( 9 );
|
::TextSize( 9 );
|
||||||
::TextFace( 0 ) ;
|
::TextFace( 0 ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Find the widest line
|
// Find the widest line
|
||||||
for(int i = 0; i < GetCount(); i++) {
|
for(int i = 0; i < GetCount(); i++) {
|
||||||
wxString str(GetString(i));
|
wxString str(GetString(i));
|
||||||
@@ -651,15 +651,15 @@ wxSize wxListBox::DoGetBestSize() const
|
|||||||
#endif
|
#endif
|
||||||
lbWidth = wxMax(lbWidth, wLine);
|
lbWidth = wxMax(lbWidth, wLine);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add room for the scrollbar
|
// Add room for the scrollbar
|
||||||
lbWidth += wxSystemSettings::GetMetric(wxSYS_VSCROLL_X);
|
lbWidth += wxSystemSettings::GetMetric(wxSYS_VSCROLL_X);
|
||||||
|
|
||||||
// And just a bit more
|
// And just a bit more
|
||||||
int cy = 12 ;
|
int cy = 12 ;
|
||||||
int cx = ::TextWidth( "X" , 0 , 1 ) ;
|
int cx = ::TextWidth( "X" , 0 , 1 ) ;
|
||||||
lbWidth += cx ;
|
lbWidth += cx ;
|
||||||
|
|
||||||
// don't make the listbox too tall (limit height to around 10 items) but don't
|
// don't make the listbox too tall (limit height to around 10 items) but don't
|
||||||
// make it too small neither
|
// make it too small neither
|
||||||
lbHeight = (cy+4) * wxMin(wxMax(GetCount(), 3), 10);
|
lbHeight = (cy+4) * wxMin(wxMax(GetCount(), 3), 10);
|
||||||
@@ -689,7 +689,7 @@ void wxListBox::Refresh(bool eraseBack, const wxRect *rect)
|
|||||||
class wxListBoxItem : public wxOwnerDrawn
|
class wxListBoxItem : public wxOwnerDrawn
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxListBoxItem(const wxString& str = "");
|
wxListBoxItem(const wxString& str = wxEmptyString);
|
||||||
};
|
};
|
||||||
|
|
||||||
wxListBoxItem::wxListBoxItem(const wxString& str) : wxOwnerDrawn(str, FALSE)
|
wxListBoxItem::wxListBoxItem(const wxString& str) : wxOwnerDrawn(str, FALSE)
|
||||||
@@ -722,7 +722,7 @@ list = (wxListBox*)refCon;
|
|||||||
::TextSize( 9 );
|
::TextSize( 9 );
|
||||||
::TextFace( 0 ) ;
|
::TextFace( 0 ) ;
|
||||||
DrawText(text, 0 , text.Length());
|
DrawText(text, 0 , text.Length());
|
||||||
|
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
void wxListBox::MacDelete( int N )
|
void wxListBox::MacDelete( int N )
|
||||||
@@ -765,7 +765,7 @@ void wxListBox::MacSetSelection( int n , bool select )
|
|||||||
LSetSelect( false , cell , (ListHandle)m_macList ) ;
|
LSetSelect( false , cell , (ListHandle)m_macList ) ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cell.v = n ;
|
cell.v = n ;
|
||||||
LSetSelect( select , cell , (ListHandle)m_macList ) ;
|
LSetSelect( select , cell , (ListHandle)m_macList ) ;
|
||||||
LAutoScroll( (ListHandle)m_macList ) ;
|
LAutoScroll( (ListHandle)m_macList ) ;
|
||||||
@@ -796,12 +796,12 @@ int wxListBox::MacGetSelection() const
|
|||||||
int wxListBox::MacGetSelections( wxArrayInt& aSelections ) const
|
int wxListBox::MacGetSelections( wxArrayInt& aSelections ) const
|
||||||
{
|
{
|
||||||
int no_sel = 0 ;
|
int no_sel = 0 ;
|
||||||
|
|
||||||
aSelections.Empty();
|
aSelections.Empty();
|
||||||
|
|
||||||
Cell cell = { 0 , 0 } ;
|
Cell cell = { 0 , 0 } ;
|
||||||
cell.v = 0 ;
|
cell.v = 0 ;
|
||||||
|
|
||||||
while ( LGetSelect( true , &cell ,(ListHandle) m_macList ) )
|
while ( LGetSelect( true , &cell ,(ListHandle) m_macList ) )
|
||||||
{
|
{
|
||||||
aSelections.Add( cell.v ) ;
|
aSelections.Add( cell.v ) ;
|
||||||
@@ -829,7 +829,7 @@ void wxListBox::MacScrollTo( int n )
|
|||||||
void wxListBox::OnSize( wxSizeEvent &event)
|
void wxListBox::OnSize( wxSizeEvent &event)
|
||||||
{
|
{
|
||||||
Point pt;
|
Point pt;
|
||||||
|
|
||||||
#if TARGET_CARBON
|
#if TARGET_CARBON
|
||||||
GetListCellSize((ListHandle)m_macList, &pt);
|
GetListCellSize((ListHandle)m_macList, &pt);
|
||||||
#else
|
#else
|
||||||
@@ -843,7 +843,7 @@ void wxListBox::MacHandleControlClick( WXWidget control , wxInt16 controlpart ,
|
|||||||
{
|
{
|
||||||
Boolean wasDoubleClick = false ;
|
Boolean wasDoubleClick = false ;
|
||||||
long result ;
|
long result ;
|
||||||
|
|
||||||
::GetControlData( (ControlHandle) m_macControl , kControlNoPart , kControlListBoxDoubleClickTag , sizeof( wasDoubleClick ) , (char*) &wasDoubleClick , &result ) ;
|
::GetControlData( (ControlHandle) m_macControl , kControlNoPart , kControlListBoxDoubleClickTag , sizeof( wasDoubleClick ) , (char*) &wasDoubleClick , &result ) ;
|
||||||
if ( !wasDoubleClick )
|
if ( !wasDoubleClick )
|
||||||
{
|
{
|
||||||
@@ -858,7 +858,6 @@ void wxListBox::MacHandleControlClick( WXWidget control , wxInt16 controlpart ,
|
|||||||
void wxListBox::MacSetRedraw( bool doDraw )
|
void wxListBox::MacSetRedraw( bool doDraw )
|
||||||
{
|
{
|
||||||
LSetDrawingMode( doDraw , (ListHandle)m_macList ) ;
|
LSetDrawingMode( doDraw , (ListHandle)m_macList ) ;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::MacDoClick()
|
void wxListBox::MacDoClick()
|
||||||
@@ -866,7 +865,7 @@ void wxListBox::MacDoClick()
|
|||||||
wxArrayInt aSelections;
|
wxArrayInt aSelections;
|
||||||
int n ;
|
int n ;
|
||||||
size_t count = GetSelections(aSelections);
|
size_t count = GetSelections(aSelections);
|
||||||
|
|
||||||
if ( count == m_selectionPreImage.GetCount() )
|
if ( count == m_selectionPreImage.GetCount() )
|
||||||
{
|
{
|
||||||
bool hasChanged = false ;
|
bool hasChanged = false ;
|
||||||
@@ -883,12 +882,12 @@ void wxListBox::MacDoClick()
|
|||||||
return ;
|
return ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
m_selectionPreImage = aSelections;
|
m_selectionPreImage = aSelections;
|
||||||
|
|
||||||
wxCommandEvent event(wxEVT_COMMAND_LISTBOX_SELECTED, m_windowId);
|
wxCommandEvent event(wxEVT_COMMAND_LISTBOX_SELECTED, m_windowId);
|
||||||
event.SetEventObject( this );
|
event.SetEventObject( this );
|
||||||
|
|
||||||
if ( count > 0 )
|
if ( count > 0 )
|
||||||
{
|
{
|
||||||
n = aSelections[0];
|
n = aSelections[0];
|
||||||
@@ -902,9 +901,9 @@ void wxListBox::MacDoClick()
|
|||||||
{
|
{
|
||||||
n = -1;
|
n = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
event.SetInt(n);
|
event.SetInt(n);
|
||||||
|
|
||||||
GetEventHandler()->ProcessEvent(event);
|
GetEventHandler()->ProcessEvent(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -922,7 +921,7 @@ void wxListBox::OnChar(wxKeyEvent& event)
|
|||||||
wxWindow* parent = GetParent() ;
|
wxWindow* parent = GetParent() ;
|
||||||
while( parent && !parent->IsTopLevel() && parent->GetDefaultItem() == NULL )
|
while( parent && !parent->IsTopLevel() && parent->GetDefaultItem() == NULL )
|
||||||
parent = parent->GetParent() ;
|
parent = parent->GetParent() ;
|
||||||
|
|
||||||
if ( parent && parent->GetDefaultItem() )
|
if ( parent && parent->GetDefaultItem() )
|
||||||
{
|
{
|
||||||
wxButton *def = wxDynamicCast(parent->GetDefaultItem(),
|
wxButton *def = wxDynamicCast(parent->GetDefaultItem(),
|
||||||
@@ -940,14 +939,14 @@ void wxListBox::OnChar(wxKeyEvent& event)
|
|||||||
/* generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs) */
|
/* generate wxID_CANCEL if command-. or <esc> has been pressed (typically in dialogs) */
|
||||||
else if (event.GetKeyCode() == WXK_ESCAPE || (event.GetKeyCode() == '.' && event.MetaDown() ) )
|
else if (event.GetKeyCode() == WXK_ESCAPE || (event.GetKeyCode() == '.' && event.MetaDown() ) )
|
||||||
{
|
{
|
||||||
// FIXME: look in ancestors, not just parent.
|
// FIXME: look in ancestors, not just parent.
|
||||||
wxWindow* win = GetParent()->FindWindow( wxID_CANCEL ) ;
|
wxWindow* win = GetParent()->FindWindow( wxID_CANCEL ) ;
|
||||||
if (win)
|
if (win)
|
||||||
{
|
{
|
||||||
wxCommandEvent new_event(wxEVT_COMMAND_BUTTON_CLICKED,wxID_CANCEL);
|
wxCommandEvent new_event(wxEVT_COMMAND_BUTTON_CLICKED,wxID_CANCEL);
|
||||||
new_event.SetEventObject( win );
|
new_event.SetEventObject( win );
|
||||||
win->GetEventHandler()->ProcessEvent( new_event );
|
win->GetEventHandler()->ProcessEvent( new_event );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ( event.GetKeyCode() == WXK_TAB )
|
else if ( event.GetKeyCode() == WXK_TAB )
|
||||||
{
|
{
|
||||||
@@ -964,10 +963,10 @@ void wxListBox::OnChar(wxKeyEvent& event)
|
|||||||
{
|
{
|
||||||
// perform the default key handling first
|
// perform the default key handling first
|
||||||
wxControl::OnKeyDown( event ) ;
|
wxControl::OnKeyDown( event ) ;
|
||||||
|
|
||||||
wxCommandEvent event(wxEVT_COMMAND_LISTBOX_SELECTED, m_windowId);
|
wxCommandEvent event(wxEVT_COMMAND_LISTBOX_SELECTED, m_windowId);
|
||||||
event.SetEventObject( this );
|
event.SetEventObject( this );
|
||||||
|
|
||||||
wxArrayInt aSelections;
|
wxArrayInt aSelections;
|
||||||
int n, count = GetSelections(aSelections);
|
int n, count = GetSelections(aSelections);
|
||||||
if ( count > 0 )
|
if ( count > 0 )
|
||||||
@@ -983,9 +982,9 @@ void wxListBox::OnChar(wxKeyEvent& event)
|
|||||||
{
|
{
|
||||||
n = -1;
|
n = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
event.SetInt(n);
|
event.SetInt(n);
|
||||||
|
|
||||||
GetEventHandler()->ProcessEvent(event);
|
GetEventHandler()->ProcessEvent(event);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -1004,18 +1003,17 @@ void wxListBox::OnChar(wxKeyEvent& event)
|
|||||||
SetSelection(line) ;
|
SetSelection(line) ;
|
||||||
wxCommandEvent event(wxEVT_COMMAND_LISTBOX_SELECTED, m_windowId);
|
wxCommandEvent event(wxEVT_COMMAND_LISTBOX_SELECTED, m_windowId);
|
||||||
event.SetEventObject( this );
|
event.SetEventObject( this );
|
||||||
|
|
||||||
if ( HasClientObjectData() )
|
if ( HasClientObjectData() )
|
||||||
event.SetClientObject( GetClientObject( line ) );
|
event.SetClientObject( GetClientObject( line ) );
|
||||||
else if ( HasClientUntypedData() )
|
else if ( HasClientUntypedData() )
|
||||||
event.SetClientData( GetClientData(line) );
|
event.SetClientData( GetClientData(line) );
|
||||||
event.SetString( GetString(line) );
|
event.SetString( GetString(line) );
|
||||||
|
|
||||||
event.SetInt(line);
|
event.SetInt(line);
|
||||||
|
|
||||||
GetEventHandler()->ProcessEvent(event);
|
GetEventHandler()->ProcessEvent(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: checklst.cpp
|
// Name: src/motif/checklst.cpp
|
||||||
// Purpose: implementation of wxCheckListBox class
|
// Purpose: implementation of wxCheckListBox class
|
||||||
// Author: Julian Smart
|
// Author: Julian Smart
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -97,7 +97,7 @@ bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
|
|||||||
bool retVal = wxListBox::Create(parent, id, pos, size, n, choices,
|
bool retVal = wxListBox::Create(parent, id, pos, size, n, choices,
|
||||||
style, validator, name);
|
style, validator, name);
|
||||||
return retVal;
|
return retVal;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
|
bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
|
||||||
const wxPoint& pos,
|
const wxPoint& pos,
|
||||||
@@ -111,7 +111,7 @@ bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
|
|||||||
bool retVal = wxListBox::Create(parent, id, pos, size, choices,
|
bool retVal = wxListBox::Create(parent, id, pos, size, choices,
|
||||||
style, validator, name);
|
style, validator, name);
|
||||||
return retVal;
|
return retVal;
|
||||||
}
|
}
|
||||||
|
|
||||||
// check items
|
// check items
|
||||||
// -----------
|
// -----------
|
||||||
@@ -156,10 +156,10 @@ int wxCheckListBox::DoAppend(const wxString& item)
|
|||||||
return wxListBox::DoAppend( Prefix(false) + item );
|
return wxListBox::DoAppend( Prefix(false) + item );
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxCheckListBox::FindString(const wxString& s) const
|
int wxCheckListBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
int n1 = wxListBox::FindString(Prefix(false) + s);
|
int n1 = wxListBox::FindString(Prefix(false) + s, bCase);
|
||||||
int n2 = wxListBox::FindString(Prefix(true) + s);
|
int n2 = wxListBox::FindString(Prefix(true) + s, bCase);
|
||||||
int min = wxMin(n1, n2), max = wxMax(n1, n2);
|
int min = wxMin(n1, n2), max = wxMax(n1, n2);
|
||||||
|
|
||||||
// why this works:
|
// why this works:
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: choice.cpp
|
// Name: src/motif/choice.cpp
|
||||||
// Purpose: wxChoice
|
// Purpose: wxChoice
|
||||||
// Author: Julian Smart
|
// Author: Julian Smart
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -278,7 +278,7 @@ int wxChoice::GetSelection() const
|
|||||||
wxXmString freeMe(text);
|
wxXmString freeMe(text);
|
||||||
wxString s = wxXmStringToString( text );
|
wxString s = wxXmStringToString( text );
|
||||||
|
|
||||||
if (!s.IsEmpty())
|
if (!s.empty())
|
||||||
{
|
{
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (wxStringList::compatibility_iterator node = m_stringList.GetFirst ();
|
for (wxStringList::compatibility_iterator node = m_stringList.GetFirst ();
|
||||||
@@ -329,21 +329,6 @@ void wxChoice::SetSelection(int n)
|
|||||||
m_inSetValue = false;
|
m_inSetValue = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxChoice::FindString(const wxString& s) const
|
|
||||||
{
|
|
||||||
int i = 0;
|
|
||||||
for (wxStringList::compatibility_iterator node = m_stringList.GetFirst();
|
|
||||||
node; node = node->GetNext ())
|
|
||||||
{
|
|
||||||
if (s == node->GetData())
|
|
||||||
return i;
|
|
||||||
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return wxNOT_FOUND;
|
|
||||||
}
|
|
||||||
|
|
||||||
wxString wxChoice::GetString(int n) const
|
wxString wxChoice::GetString(int n) const
|
||||||
{
|
{
|
||||||
wxStringList::compatibility_iterator node = m_stringList.Item(n);
|
wxStringList::compatibility_iterator node = m_stringList.Item(n);
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: combobox.cpp
|
// Name: src/motif/combobox.cpp
|
||||||
// Purpose: wxComboBox class
|
// Purpose: wxComboBox class
|
||||||
// Author: Julian Smart
|
// Author: Julian Smart
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -222,8 +222,10 @@ wxString wxComboBox::GetString(int n) const
|
|||||||
return wxEmptyString;
|
return wxEmptyString;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::FindString(const wxString& s) const
|
int wxComboBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
|
// FIXME: back to base class for not supported value of bCase
|
||||||
|
|
||||||
int *pos_list = NULL;
|
int *pos_list = NULL;
|
||||||
int count = 0;
|
int count = 0;
|
||||||
wxXmString text( s );
|
wxXmString text( s );
|
||||||
@@ -237,7 +239,7 @@ int wxComboBox::FindString(const wxString& s) const
|
|||||||
return pos;
|
return pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
return -1;
|
return wxNOT_FOUND;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clipboard operations
|
// Clipboard operations
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: combobox_native.cpp
|
// Name: src/motif/combobox_native.cpp
|
||||||
// Purpose: wxComboBox class
|
// Purpose: wxComboBox class
|
||||||
// Author: Julian Smart, Ian Brown
|
// Author: Julian Smart, Ian Brown
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -292,8 +292,10 @@ wxString wxComboBox::GetString(int n) const
|
|||||||
return wxDoGetStringInList( GetXmList(this), n );
|
return wxDoGetStringInList( GetXmList(this), n );
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::FindString(const wxString& s) const
|
int wxComboBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
|
// FIXME: back to base class for not supported value of bCase
|
||||||
|
|
||||||
return wxDoFindStringInList( GetXmList( this ), s );
|
return wxDoFindStringInList( GetXmList( this ), s );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: listbox.cpp
|
// Name: src/motif/listbox.cpp
|
||||||
// Purpose: wxListBox
|
// Purpose: wxListBox
|
||||||
// Author: Julian Smart
|
// Author: Julian Smart
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -306,8 +306,10 @@ int wxDoFindStringInList(Widget w, const wxString& s)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::FindString(const wxString& s) const
|
int wxListBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
|
// FIXME: back to base class for not supported value of bCase
|
||||||
|
|
||||||
return wxDoFindStringInList( (Widget)m_mainWidget, s );
|
return wxDoFindStringInList( (Widget)m_mainWidget, s );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -712,4 +714,3 @@ wxSize wxListBox::DoGetBestSize() const
|
|||||||
{
|
{
|
||||||
return wxDoGetListBoxBestSize( (Widget)m_mainWidget, this );
|
return wxDoGetListBoxBestSize( (Widget)m_mainWidget, this );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: radiobox.cpp
|
// Name: src/motif/radiobox.cpp
|
||||||
// Purpose: wxRadioBox
|
// Purpose: wxRadioBox
|
||||||
// Author: Julian Smart
|
// Author: Julian Smart
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -192,15 +192,6 @@ void wxRadioBox::SetString(int item, const wxString& label)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxRadioBox::FindString(const wxString& s) const
|
|
||||||
{
|
|
||||||
int i;
|
|
||||||
for (i = 0; i < m_noItems; i++)
|
|
||||||
if (s == m_radioButtonLabels[i])
|
|
||||||
return i;
|
|
||||||
return wxNOT_FOUND;
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxRadioBox::SetSelection(int n)
|
void wxRadioBox::SetSelection(int n)
|
||||||
{
|
{
|
||||||
if (!IsValid(n))
|
if (!IsValid(n))
|
||||||
@@ -434,4 +425,3 @@ void wxRadioBoxCallback (Widget w, XtPointer clientData,
|
|||||||
event.SetEventObject(item);
|
event.SetEventObject(item);
|
||||||
item->ProcessCommand (event);
|
item->ProcessCommand (event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: choice.cpp
|
// Name: src/msw/choice.cpp
|
||||||
// Purpose: wxChoice
|
// Purpose: wxChoice
|
||||||
// Author: Julian Smart
|
// Author: Julian Smart
|
||||||
// Modified by: Vadim Zeitlin to derive from wxChoiceBase
|
// Modified by: Vadim Zeitlin to derive from wxChoiceBase
|
||||||
@@ -331,7 +331,7 @@ int wxChoice::GetCount() const
|
|||||||
return (int)SendMessage(GetHwnd(), CB_GETCOUNT, 0, 0);
|
return (int)SendMessage(GetHwnd(), CB_GETCOUNT, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxChoice::FindString(const wxString& s) const
|
int wxChoice::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
#if defined(__WATCOMC__) && defined(__WIN386__)
|
#if defined(__WATCOMC__) && defined(__WIN386__)
|
||||||
// For some reason, Watcom in WIN386 mode crashes in the CB_FINDSTRINGEXACT message.
|
// For some reason, Watcom in WIN386 mode crashes in the CB_FINDSTRINGEXACT message.
|
||||||
@@ -340,7 +340,7 @@ int wxChoice::FindString(const wxString& s) const
|
|||||||
for ( int i = 0; i < count; i++ )
|
for ( int i = 0; i < count; i++ )
|
||||||
{
|
{
|
||||||
// as CB_FINDSTRINGEXACT is case insensitive, be case insensitive too
|
// as CB_FINDSTRINGEXACT is case insensitive, be case insensitive too
|
||||||
if ( GetString(i).IsSameAs(s, false) )
|
if ( GetString(i).IsSameAs(s, bCase) )
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -350,21 +350,26 @@ int wxChoice::FindString(const wxString& s) const
|
|||||||
//passed to SendMessage, so we have to do it ourselves in that case
|
//passed to SendMessage, so we have to do it ourselves in that case
|
||||||
if ( s.empty() )
|
if ( s.empty() )
|
||||||
{
|
{
|
||||||
int count = GetCount();
|
int count = GetCount();
|
||||||
for ( int i = 0; i < count; i++ )
|
for ( int i = 0; i < count; i++ )
|
||||||
{
|
{
|
||||||
if ( GetString(i).empty() )
|
if ( GetString(i).empty() )
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
return wxNOT_FOUND;
|
return wxNOT_FOUND;
|
||||||
|
}
|
||||||
|
else if (bCase)
|
||||||
|
{
|
||||||
|
// back to base class search for not native search type
|
||||||
|
return wxItemContainerImmutable::FindString( s, bCase );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int pos = (int)SendMessage(GetHwnd(), CB_FINDSTRINGEXACT,
|
int pos = (int)SendMessage(GetHwnd(), CB_FINDSTRINGEXACT,
|
||||||
(WPARAM)-1, (LPARAM)s.c_str());
|
(WPARAM)-1, (LPARAM)s.c_str());
|
||||||
|
|
||||||
return pos == LB_ERR ? wxNOT_FOUND : pos;
|
return pos == LB_ERR ? wxNOT_FOUND : pos;
|
||||||
}
|
}
|
||||||
#endif // Watcom/!Watcom
|
#endif // Watcom/!Watcom
|
||||||
}
|
}
|
||||||
@@ -675,4 +680,3 @@ WXHBRUSH wxChoice::MSWControlColor(WXHDC hDC, WXHWND hWnd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif // wxUSE_CHOICE && !(__SMARTPHONE__ && __WXWINCE__)
|
#endif // wxUSE_CHOICE && !(__SMARTPHONE__ && __WXWINCE__)
|
||||||
|
|
||||||
|
@@ -348,8 +348,12 @@ void wxListBox::DoSetItems(const wxArrayString& choices, void** clientData)
|
|||||||
InvalidateBestSize();
|
InvalidateBestSize();
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::FindString(const wxString& s) const
|
int wxListBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
|
// back to base class search for not native search type
|
||||||
|
if (bCase)
|
||||||
|
return wxItemContainerImmutable::FindString( s, bCase );
|
||||||
|
|
||||||
int pos = ListBox_FindStringExact(GetHwnd(), (WPARAM)-1, s);
|
int pos = ListBox_FindStringExact(GetHwnd(), (WPARAM)-1, s);
|
||||||
if (pos == LB_ERR)
|
if (pos == LB_ERR)
|
||||||
return wxNOT_FOUND;
|
return wxNOT_FOUND;
|
||||||
|
@@ -223,7 +223,7 @@ bool wxChoice::CreateAndInit(wxWindow *parent,
|
|||||||
if ( style & wxSP_WRAP )
|
if ( style & wxSP_WRAP )
|
||||||
spiner_style |= UDS_WRAP;
|
spiner_style |= UDS_WRAP;
|
||||||
|
|
||||||
if ( !MSWCreateControl(UPDOWN_CLASS, spiner_style, posBtn, sizeBtn, _T(""), 0) )
|
if ( !MSWCreateControl(UPDOWN_CLASS, spiner_style, posBtn, sizeBtn, wxEmptyString, 0) )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// subclass the text ctrl to be able to intercept some events
|
// subclass the text ctrl to be able to intercept some events
|
||||||
@@ -414,8 +414,12 @@ int wxChoice::GetCount() const
|
|||||||
return (int)::SendMessage(GetBuddyHwnd(), LB_GETCOUNT, 0, 0);
|
return (int)::SendMessage(GetBuddyHwnd(), LB_GETCOUNT, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxChoice::FindString(const wxString& s) const
|
int wxChoice::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
|
// back to base class search for not native search type
|
||||||
|
if (bCase)
|
||||||
|
return wxItemContainerImmutable::FindString( s, bCase );
|
||||||
|
|
||||||
int pos = (int)::SendMessage(GetBuddyHwnd(), LB_FINDSTRINGEXACT,
|
int pos = (int)::SendMessage(GetBuddyHwnd(), LB_FINDSTRINGEXACT,
|
||||||
(WPARAM)-1, (LPARAM)s.c_str());
|
(WPARAM)-1, (LPARAM)s.c_str());
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: choice.cpp
|
// Name: src/os2/choice.cpp
|
||||||
// Purpose: wxChoice
|
// Purpose: wxChoice
|
||||||
// Author: David Webster
|
// Author: David Webster
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -201,38 +201,10 @@ int wxChoice::GetCount() const
|
|||||||
return((int)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMCOUNT, (MPARAM)0, (MPARAM)0)));
|
return((int)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMCOUNT, (MPARAM)0, (MPARAM)0)));
|
||||||
} // end of wxChoice::GetCount
|
} // end of wxChoice::GetCount
|
||||||
|
|
||||||
int wxChoice::FindString(
|
void wxChoice::SetString( int n, const wxString& rsStr )
|
||||||
const wxString& rsStr
|
|
||||||
) const
|
|
||||||
{
|
{
|
||||||
int nPos;
|
LONG nIndexType = 0;
|
||||||
int nTextLength;
|
void* pData;
|
||||||
PSZ zStr;
|
|
||||||
int nItemCount;
|
|
||||||
|
|
||||||
nItemCount = (int)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMCOUNT, (MPARAM)0, (MPARAM)0));
|
|
||||||
for (nPos = 0; nPos < nItemCount; nPos++)
|
|
||||||
{
|
|
||||||
nTextLength = (int)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXTLENGTH, (MPARAM)nPos, (MPARAM)0));
|
|
||||||
zStr = new char[nTextLength + 1];
|
|
||||||
::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXT, MPFROM2SHORT((SHORT)nPos, (SHORT)nTextLength), (MPARAM)zStr);
|
|
||||||
if (rsStr == (wxChar*)zStr)
|
|
||||||
{
|
|
||||||
delete [] zStr;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
delete [] zStr;
|
|
||||||
}
|
|
||||||
return nPos;
|
|
||||||
} // end of wxChoice::FindString
|
|
||||||
|
|
||||||
void wxChoice::SetString(
|
|
||||||
int n
|
|
||||||
, const wxString& rsStr
|
|
||||||
)
|
|
||||||
{
|
|
||||||
LONG nIndexType = 0;
|
|
||||||
void* pData;
|
|
||||||
|
|
||||||
if ( m_clientDataItemsType != wxClientData_None )
|
if ( m_clientDataItemsType != wxClientData_None )
|
||||||
{
|
{
|
||||||
@@ -263,13 +235,11 @@ void wxChoice::SetString(
|
|||||||
}
|
}
|
||||||
} // end of wxChoice::SetString
|
} // end of wxChoice::SetString
|
||||||
|
|
||||||
wxString wxChoice::GetString(
|
wxString wxChoice::GetString(int n) const
|
||||||
int n
|
|
||||||
) const
|
|
||||||
{
|
{
|
||||||
int nLen = 0;
|
int nLen = 0;
|
||||||
wxString sStr = wxEmptyString;
|
wxString sStr = wxEmptyString;
|
||||||
wxChar* zBuf;
|
wxChar* zBuf;
|
||||||
|
|
||||||
nLen = (size_t)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXTLENGTH, (MPARAM)n, (MPARAM)0));
|
nLen = (size_t)LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXTLENGTH, (MPARAM)n, (MPARAM)0));
|
||||||
if (nLen != LIT_ERROR && nLen > 0)
|
if (nLen != LIT_ERROR && nLen > 0)
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: listbox.cpp
|
// Name: src/os2/listbox.cpp
|
||||||
// Purpose: wxListBox
|
// Purpose: wxListBox
|
||||||
// Author: David Webster
|
// Author: David Webster
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -364,30 +364,6 @@ void wxListBox::DoSetItems(
|
|||||||
::WinShowWindow(GetHwnd(), TRUE);
|
::WinShowWindow(GetHwnd(), TRUE);
|
||||||
} // end of wxListBox::DoSetItems
|
} // end of wxListBox::DoSetItems
|
||||||
|
|
||||||
int wxListBox::FindString(
|
|
||||||
const wxString& rsString
|
|
||||||
) const
|
|
||||||
{
|
|
||||||
int nPos;
|
|
||||||
LONG lTextLength;
|
|
||||||
PSZ zStr;
|
|
||||||
|
|
||||||
|
|
||||||
for (nPos = 0; nPos < m_nNumItems; nPos++)
|
|
||||||
{
|
|
||||||
lTextLength = LONGFROMMR(::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXTLENGTH, (MPARAM)nPos, (MPARAM)0));
|
|
||||||
zStr = new char[lTextLength + 1];
|
|
||||||
::WinSendMsg(GetHwnd(), LM_QUERYITEMTEXT, MPFROM2SHORT(nPos, (SHORT)lTextLength), (MPARAM)zStr);
|
|
||||||
if (rsString == (wxChar*)zStr)
|
|
||||||
{
|
|
||||||
delete [] zStr;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
delete [] zStr;
|
|
||||||
}
|
|
||||||
return nPos;
|
|
||||||
} // end of wxListBox::FindString
|
|
||||||
|
|
||||||
void wxListBox::Clear()
|
void wxListBox::Clear()
|
||||||
{
|
{
|
||||||
#if wxUSE_OWNER_DRAWN
|
#if wxUSE_OWNER_DRAWN
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: radiobox.cpp
|
// Name: src/os2/radiobox.cpp
|
||||||
// Purpose: wxRadioBox
|
// Purpose: wxRadioBox
|
||||||
// Author: David Webster
|
// Author: David Webster
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -686,18 +686,6 @@ bool wxRadioBox::Enable(
|
|||||||
return true;
|
return true;
|
||||||
} // end of wxRadioBox::Enable
|
} // end of wxRadioBox::Enable
|
||||||
|
|
||||||
int wxRadioBox::FindString(
|
|
||||||
const wxString& rsStr
|
|
||||||
) const
|
|
||||||
{
|
|
||||||
for (int i = 0; i < m_nNoItems; i++)
|
|
||||||
{
|
|
||||||
if (rsStr == wxGetWindowText(m_ahRadioButtons[i]) )
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
return wxNOT_FOUND;
|
|
||||||
} // end of wxRadioBox::FindString
|
|
||||||
|
|
||||||
int wxRadioBox::GetColumnCount() const
|
int wxRadioBox::GetColumnCount() const
|
||||||
{
|
{
|
||||||
return GetNumHor();
|
return GetNumHor();
|
||||||
@@ -708,9 +696,7 @@ int wxRadioBox::GetCount() const
|
|||||||
return m_nNoItems;
|
return m_nNoItems;
|
||||||
} // end of wxRadioBox::GetCount
|
} // end of wxRadioBox::GetCount
|
||||||
|
|
||||||
wxString wxRadioBox::GetLabel(
|
wxString wxRadioBox::GetLabel(int nItem) const
|
||||||
int nItem
|
|
||||||
) const
|
|
||||||
{
|
{
|
||||||
wxCHECK_MSG( IsValid(nItem), wxEmptyString, wxT("invalid radiobox index") );
|
wxCHECK_MSG( IsValid(nItem), wxEmptyString, wxT("invalid radiobox index") );
|
||||||
|
|
||||||
@@ -1051,11 +1037,9 @@ void wxRadioBox::SetString(
|
|||||||
::WinSetWindowText((HWND)m_ahRadioButtons[nItem], (PSZ)rsLabel.c_str());
|
::WinSetWindowText((HWND)m_ahRadioButtons[nItem], (PSZ)rsLabel.c_str());
|
||||||
} // end of wxRadioBox::SetString
|
} // end of wxRadioBox::SetString
|
||||||
|
|
||||||
bool wxRadioBox::SetStringSelection(
|
bool wxRadioBox::SetStringSelection(const wxString& rsStr)
|
||||||
const wxString& rsStr
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
int nSel = FindString(rsStr);
|
int nSel = FindString(rsStr);
|
||||||
|
|
||||||
if (nSel > -1)
|
if (nSel > -1)
|
||||||
{
|
{
|
||||||
|
@@ -193,11 +193,6 @@ int wxChoice::GetCount() const
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxChoice::FindString(const wxString& s) const
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxChoice::SetString(int n, const wxString& s)
|
void wxChoice::SetString(int n, const wxString& s)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@@ -190,11 +190,6 @@ void wxListBox::DoSetItems(const wxArrayString& choices, void** clientData)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::FindString(const wxString& s) const
|
|
||||||
{
|
|
||||||
return wxNOT_FOUND;
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxListBox::Clear()
|
void wxListBox::Clear()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: univ/combobox.cpp
|
// Name: src/univ/combobox.cpp
|
||||||
// Purpose: wxComboControl and wxComboBox implementation
|
// Purpose: wxComboControl and wxComboBox implementation
|
||||||
// Author: Vadim Zeitlin
|
// Author: Vadim Zeitlin
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -825,9 +825,9 @@ void wxComboBox::SetString(int n, const wxString& s)
|
|||||||
GetLBox()->SetString(n, s);
|
GetLBox()->SetString(n, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::FindString(const wxString& s) const
|
int wxComboBox::FindString(const wxString& s, bool bCase) const
|
||||||
{
|
{
|
||||||
return GetLBox()->FindString(s);
|
return GetLBox()->FindString(s, bCase);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxComboBox::SetSelection(int n)
|
void wxComboBox::SetSelection(int n)
|
||||||
|
Reference in New Issue
Block a user