mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 22:18:15 +02:00
lcl: remove lclintf ComboBoxDropDown, create 2 methods instead in TWSCustomCombobox: one to get DroppedDown status, another to set it. + implementation for all widgetsets except carbon
git-svn-id: trunk@22285 -
This commit is contained in:
parent
833166cbd0
commit
b89b28de7c
@ -675,7 +675,10 @@ end;
|
||||
------------------------------------------------------------------------------}
|
||||
function TCustomComboBox.GetDroppedDown: Boolean;
|
||||
begin
|
||||
Result:=FDroppedDown;
|
||||
if HandleAllocated then
|
||||
Result := TWSCustomComboBoxClass(WidgetSetClass).GetDroppedDown(Self)
|
||||
else
|
||||
Result := FDroppedDown;
|
||||
end;
|
||||
|
||||
function TCustomComboBox.GetAutoComplete: boolean;
|
||||
@ -710,9 +713,11 @@ end;
|
||||
------------------------------------------------------------------------------}
|
||||
procedure TCustomComboBox.SetDroppedDown(const AValue: Boolean);
|
||||
begin
|
||||
if FDroppedDown=AValue then exit;
|
||||
if (not HandleAllocated) or (csLoading in ComponentState) then exit;
|
||||
ComboBoxDropDown(Handle,AValue);
|
||||
if GetDroppedDown = AValue then
|
||||
Exit;
|
||||
if (not HandleAllocated) or (csLoading in ComponentState) then
|
||||
Exit;
|
||||
TWSCustomComboBoxClass(WidgetSetClass).SetDroppedDown(Self, AValue);
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
|
@ -87,12 +87,6 @@ begin
|
||||
Result := 0;
|
||||
end;
|
||||
|
||||
function TWidgetSet.ComboBoxDropDown(Handle: HWND;
|
||||
DropDown: boolean): boolean;
|
||||
begin
|
||||
Result := false;
|
||||
end;
|
||||
|
||||
//todo: remove ?
|
||||
function TWidgetSet.CreateEmptyRegion: hRGN;
|
||||
begin
|
||||
|
@ -93,11 +93,6 @@ begin
|
||||
Result := WidgetSet.ClipboardRegisterFormat(AMimeType);
|
||||
end;
|
||||
|
||||
function ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean;
|
||||
begin
|
||||
Result := WidgetSet.ComboBoxDropDown(Handle,DropDown);
|
||||
end;
|
||||
|
||||
function CreateBitmapFromRawImage(const RawImage: TRawImage;
|
||||
var Bitmap, MaskBitmap: HBitmap; AlwaysCreateMask: boolean): boolean;
|
||||
begin
|
||||
|
@ -53,7 +53,6 @@ function ClipboardGetOwnerShip(ClipboardType: TClipboardType;
|
||||
OnRequestProc: TClipboardRequestEvent; FormatCount: integer;
|
||||
Formats: PClipboardFormat): boolean; {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF}
|
||||
function ClipboardRegisterFormat(const AMimeType: string): TClipboardFormat; {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF}
|
||||
function ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean; {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF}
|
||||
{$ifdef OldRawImageProcs}
|
||||
function CreateBitmapFromRawImage(const RawImage: TRawImage; var Bitmap, MaskBitmap: HBitmap; AlwaysCreateMask: boolean): boolean; {$IFDEF IF_BASE_MEMBER}virtual;{$ENDIF}
|
||||
{$endif}
|
||||
|
@ -49,7 +49,6 @@ function ClipboardGetOwnerShip(ClipboardType: TClipboardType;
|
||||
function ClipboardRegisterFormat(const AMimeType: string): TClipboardFormat; override;
|
||||
|
||||
function CombineRgn(Dest, Src1, Src2: HRGN; fnCombineMode: Longint): Longint; override;
|
||||
function ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean; override;
|
||||
function CreateBitmap(Width, Height: Integer; Planes, BitCount: Longint; BitmapBits: Pointer): HBITMAP; override;
|
||||
function CreateBrushIndirect(const LogBrush: TLogBrush): HBRUSH; override;
|
||||
function CreateCaret(Handle : HWND; Bitmap : hBitmap; Width, Height : Integer) : Boolean; override;
|
||||
|
@ -49,7 +49,6 @@ function ClipboardGetOwnerShip(ClipboardType: TClipboardType;
|
||||
function ClipboardRegisterFormat(const AMimeType: string): TClipboardFormat; override;
|
||||
|
||||
function CombineRgn(Dest, Src1, Src2: HRGN; fnCombineMode: Longint): Longint; override;
|
||||
function ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean; override;
|
||||
function CreateBitmap(Width, Height: Integer; Planes, BitCount: Longint; BitmapBits: Pointer): HBITMAP; override;
|
||||
function CreateBrushIndirect(const LogBrush: TLogBrush): HBRUSH; override;
|
||||
function CreateCaret(Handle : HWND; Bitmap : hBitmap; Width, Height : Integer) : Boolean; override;
|
||||
|
@ -2235,148 +2235,6 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
function TGtkWidgetSet.ComboBoxDropDown(Handle: HWND;
|
||||
DropDown: boolean): boolean; override;
|
||||
------------------------------------------------------------------------------}
|
||||
function TGtkWidgetSet.ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean;
|
||||
|
||||
procedure gtk_combo_get_pos(combo : PGtkCombo; var x : gint; var y : gint;
|
||||
var height : gint; var width : gint);
|
||||
var
|
||||
popwin : PGtkbin;
|
||||
widget : PGtkWidget;
|
||||
popup : PGtkScrolledwindow;
|
||||
real_height : gint;
|
||||
list_requisition : PGtkRequisition;
|
||||
show_hscroll : gboolean;
|
||||
show_vscroll : gboolean;
|
||||
avail_height : gint;
|
||||
min_height : gint;
|
||||
alloc_width : gint;
|
||||
work_height : gint;
|
||||
old_height : gint;
|
||||
old_width : gint;
|
||||
okay_to_exit : boolean;
|
||||
const
|
||||
EMPTY_LIST_HEIGHT = 15;
|
||||
begin
|
||||
show_hscroll := False;
|
||||
show_vscroll := False;
|
||||
|
||||
widget := GTK_WIDGET(combo);
|
||||
popup := GTK_SCROLLED_WINDOW (combo^.popup);
|
||||
popwin := GTK_BIN (combo^.popwin);
|
||||
|
||||
gdk_window_get_origin (combo^.entry^.window, @x, @y);
|
||||
|
||||
real_height := MIN (combo^.entry^.requisition.height,
|
||||
combo^.entry^.allocation.height);
|
||||
y := y + real_height;
|
||||
|
||||
avail_height := gdk_screen_height () - y;
|
||||
|
||||
New(list_requisition);
|
||||
if combo^.list<>nil then begin
|
||||
gtk_widget_size_request (combo^.list, list_requisition);
|
||||
end else begin
|
||||
list_requisition^.height:=1;
|
||||
list_requisition^.width:=1;
|
||||
end;
|
||||
|
||||
min_height := MIN (list_requisition^.height,popup^.vscrollbar^.requisition.height);
|
||||
if GTK_LIST (combo^.list)^.children = nil then
|
||||
list_requisition^.height := list_requisition^.height + EMPTY_LIST_HEIGHT;
|
||||
|
||||
alloc_width := (cardinal(widget^.allocation.width) -
|
||||
2 * cardinal(gtk_widget_get_xthickness(gtk_bin_get_child(popwin))) -
|
||||
2 * border_width(GTK_CONTAINER (gtk_bin_get_child(popwin))^) -
|
||||
2 * border_width(GTK_CONTAINER (combo^.popup)^) -
|
||||
2 * border_width(GTK_CONTAINER (gtk_bin_get_child(PGTKBin(popup)))^) -
|
||||
2 * cardinal(gtk_widget_get_xthickness(gtk_bin_get_child(PGTKBin(popup)))));
|
||||
|
||||
work_height := (2 * cardinal(gtk_widget_get_ythickness(gtk_bin_get_child(popwin))) +
|
||||
2 * border_width(GTK_CONTAINER (gtk_bin_get_child(popwin))^) +
|
||||
2 * border_width(GTK_CONTAINER (combo^.popup)^) +
|
||||
2 * border_width(GTK_CONTAINER (gtk_bin_get_child(PGTKBin(popup)))^) +
|
||||
2 * cardinal(gtk_widget_get_xthickness(gtk_bin_get_child(PGTKBin(popup)))));
|
||||
|
||||
repeat
|
||||
okay_to_exit := True;
|
||||
old_width := alloc_width;
|
||||
old_height := work_height;
|
||||
|
||||
if ((not show_hscroll) and (alloc_width < list_requisition^.width)) then
|
||||
begin
|
||||
work_height := work_height + popup^.hscrollbar^.requisition.height +
|
||||
GTK_SCROLLED_WINDOW_CLASS(gtk_object_get_class(combo^.popup))^.scrollbar_spacing;
|
||||
show_hscroll := TRUE;
|
||||
okay_to_exit := False;
|
||||
end;
|
||||
if ((not show_vscroll) and (work_height + list_requisition^.height > avail_height)) then
|
||||
begin
|
||||
if ((work_height + min_height > avail_height) and (y - real_height > avail_height)) then
|
||||
begin
|
||||
y := y - (work_height + list_requisition^.height + real_height);
|
||||
break;
|
||||
end;
|
||||
alloc_width := alloc_width -
|
||||
popup^.vscrollbar^.requisition.width +
|
||||
GTK_SCROLLED_WINDOW_CLASS(gtk_object_get_class(combo^.popup))^.scrollbar_spacing;
|
||||
show_vscroll := TRUE;
|
||||
okay_to_exit := False;
|
||||
end;
|
||||
until ((old_width <> alloc_width) or (old_height <> work_height) or okay_to_exit);
|
||||
|
||||
width := widget^.allocation.width;
|
||||
if (show_vscroll) then
|
||||
height := avail_height
|
||||
else
|
||||
height := work_height + list_requisition^.height;
|
||||
if (x < 0) then
|
||||
x := 0;
|
||||
|
||||
Dispose(list_requisition);
|
||||
end;
|
||||
|
||||
var
|
||||
ComboWidget: PGtkCombo;
|
||||
height, width, x, y : gint;
|
||||
old_width, old_height : gint;
|
||||
begin
|
||||
Result:=false;
|
||||
if Handle=0 then exit;
|
||||
ComboWidget:=PGtkCombo(Handle);
|
||||
if DropDown<>GTK_WIDGET_VISIBLE(ComboWidget^.popwin) then begin
|
||||
if DropDown then begin
|
||||
old_width := ComboWidget^.popwin^.allocation.width;
|
||||
old_height := ComboWidget^.popwin^.allocation.height;
|
||||
gtk_combo_get_pos(ComboWidget,x,y,height,width);
|
||||
if ((old_width <> width) or (old_height <> height)) then
|
||||
begin
|
||||
gtk_widget_hide (GTK_SCROLLED_WINDOW(ComboWidget^.popup)^.hscrollbar);
|
||||
gtk_widget_hide (GTK_SCROLLED_WINDOW(ComboWidget^.popup)^.vscrollbar);
|
||||
end;
|
||||
gtk_widget_set_uposition (comboWidget^.popwin,x, y);
|
||||
gtk_widget_set_usize(ComboWidget^.popwin,width ,height);
|
||||
gtk_widget_realize(ComboWidget^.popwin);
|
||||
|
||||
{$IFDEF DebugGDKTraps}
|
||||
BeginGDKErrorTrap;
|
||||
{$ENDIF}
|
||||
gdk_window_resize(ComboWidget^.popwin^.window,width,height);
|
||||
{$IFDEF DebugGDKTraps}
|
||||
EndGDKErrorTrap;
|
||||
{$ENDIF}
|
||||
|
||||
gtk_widget_show (ComboWidget^.popwin);
|
||||
gtk_widget_grab_focus(ComboWidget^.popwin);
|
||||
end else
|
||||
gtk_widget_hide (ComboWidget^.popwin);
|
||||
end;
|
||||
Result:=true;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
Function: DeleteDC
|
||||
Params: none
|
||||
|
@ -46,7 +46,6 @@ function ClipboardGetOwnerShip(ClipboardType: TClipboardType;
|
||||
function ClipboardRegisterFormat(const AMimeType: string): TClipboardFormat; override;
|
||||
|
||||
function CombineRgn(Dest, Src1, Src2 : HRGN; fnCombineMode : Longint) : Longint; override;
|
||||
function ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean; override;
|
||||
function CreateBitmap(Width, Height: Integer; Planes, BitCount: Longint; BitmapBits: Pointer): HBITMAP; override;
|
||||
function CreateBrushIndirect(const LogBrush: TLogBrush): HBRUSH; override;
|
||||
function CreateCaret(Handle : HWND; Bitmap : hBitmap; width, Height : Integer) : Boolean; override;
|
||||
|
@ -81,15 +81,17 @@ type
|
||||
published
|
||||
{$IFDEF GTK1}
|
||||
class procedure SetCallbacks(const AGtkWidget: PGtkWidget; const AWidgetInfo: PWidgetInfo); virtual;
|
||||
class function CreateHandle(const AWinControl: TWinControl; const AParams: TCreateParams): TLCLIntfHandle; override;
|
||||
class function GetSelStart(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetSelLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetText(const AWinControl: TWinControl; var AText: String): Boolean; override;
|
||||
class function CreateHandle(const AWinControl: TWinControl; const AParams: TCreateParams): TLCLIntfHandle; override;
|
||||
class function GetDroppedDown(const ACustomComboBox: TCustomComboBox): Boolean; virtual;
|
||||
class function GetSelStart(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetSelLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetText(const AWinControl: TWinControl; var AText: String): Boolean; override;
|
||||
|
||||
class procedure SetArrowKeysTraverseList(const ACustomComboBox: TCustomComboBox;
|
||||
NewTraverseList: boolean); override;
|
||||
class procedure SetDroppedDown(const ACustomComboBox: TCustomComboBox; ADroppedDown: Boolean); virtual;
|
||||
class procedure SetSelStart(const ACustomComboBox: TCustomComboBox; NewStart: integer); override;
|
||||
class procedure SetSelLength(const ACustomComboBox: TCustomComboBox; NewLength: integer); override;
|
||||
class procedure SetItemIndex(const ACustomComboBox: TCustomComboBox; NewIndex: integer); override;
|
||||
@ -823,6 +825,156 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
class function TGtkWSCustomComboBox.GetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox): Boolean;
|
||||
var
|
||||
ComboWidget: PGtkCombo;
|
||||
height, width, x, y : gint;
|
||||
old_width, old_height : gint;
|
||||
begin
|
||||
if not WSCheckHandleAllocated(ACustomComboBox, 'GetDroppedDown') then
|
||||
Exit(False);
|
||||
ComboWidget:=PGtkCombo(ACustomComboBox.Handle);
|
||||
Result := GTK_WIDGET_VISIBLE(ComboWidget^.popwin);
|
||||
end;
|
||||
|
||||
class procedure TGtkWSCustomComboBox.SetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox; ADroppedDown: Boolean);
|
||||
|
||||
procedure gtk_combo_get_pos(combo : PGtkCombo; var x : gint; var y : gint;
|
||||
var height : gint; var width : gint);
|
||||
var
|
||||
popwin : PGtkbin;
|
||||
widget : PGtkWidget;
|
||||
popup : PGtkScrolledwindow;
|
||||
real_height : gint;
|
||||
list_requisition : PGtkRequisition;
|
||||
show_hscroll : gboolean;
|
||||
show_vscroll : gboolean;
|
||||
avail_height : gint;
|
||||
min_height : gint;
|
||||
alloc_width : gint;
|
||||
work_height : gint;
|
||||
old_height : gint;
|
||||
old_width : gint;
|
||||
okay_to_exit : boolean;
|
||||
const
|
||||
EMPTY_LIST_HEIGHT = 15;
|
||||
begin
|
||||
show_hscroll := False;
|
||||
show_vscroll := False;
|
||||
|
||||
widget := GTK_WIDGET(combo);
|
||||
popup := GTK_SCROLLED_WINDOW (combo^.popup);
|
||||
popwin := GTK_BIN (combo^.popwin);
|
||||
|
||||
gdk_window_get_origin (combo^.entry^.window, @x, @y);
|
||||
|
||||
real_height := MIN (combo^.entry^.requisition.height,
|
||||
combo^.entry^.allocation.height);
|
||||
y := y + real_height;
|
||||
|
||||
avail_height := gdk_screen_height () - y;
|
||||
|
||||
New(list_requisition);
|
||||
if combo^.list<>nil then begin
|
||||
gtk_widget_size_request (combo^.list, list_requisition);
|
||||
end else begin
|
||||
list_requisition^.height:=1;
|
||||
list_requisition^.width:=1;
|
||||
end;
|
||||
|
||||
min_height := MIN (list_requisition^.height,popup^.vscrollbar^.requisition.height);
|
||||
if GTK_LIST (combo^.list)^.children = nil then
|
||||
list_requisition^.height := list_requisition^.height + EMPTY_LIST_HEIGHT;
|
||||
|
||||
alloc_width := (cardinal(widget^.allocation.width) -
|
||||
2 * cardinal(gtk_widget_get_xthickness(gtk_bin_get_child(popwin))) -
|
||||
2 * border_width(GTK_CONTAINER (gtk_bin_get_child(popwin))^) -
|
||||
2 * border_width(GTK_CONTAINER (combo^.popup)^) -
|
||||
2 * border_width(GTK_CONTAINER (gtk_bin_get_child(PGTKBin(popup)))^) -
|
||||
2 * cardinal(gtk_widget_get_xthickness(gtk_bin_get_child(PGTKBin(popup)))));
|
||||
|
||||
work_height := (2 * cardinal(gtk_widget_get_ythickness(gtk_bin_get_child(popwin))) +
|
||||
2 * border_width(GTK_CONTAINER (gtk_bin_get_child(popwin))^) +
|
||||
2 * border_width(GTK_CONTAINER (combo^.popup)^) +
|
||||
2 * border_width(GTK_CONTAINER (gtk_bin_get_child(PGTKBin(popup)))^) +
|
||||
2 * cardinal(gtk_widget_get_xthickness(gtk_bin_get_child(PGTKBin(popup)))));
|
||||
|
||||
repeat
|
||||
okay_to_exit := True;
|
||||
old_width := alloc_width;
|
||||
old_height := work_height;
|
||||
|
||||
if ((not show_hscroll) and (alloc_width < list_requisition^.width)) then
|
||||
begin
|
||||
work_height := work_height + popup^.hscrollbar^.requisition.height +
|
||||
GTK_SCROLLED_WINDOW_CLASS(gtk_object_get_class(combo^.popup))^.scrollbar_spacing;
|
||||
show_hscroll := TRUE;
|
||||
okay_to_exit := False;
|
||||
end;
|
||||
if ((not show_vscroll) and (work_height + list_requisition^.height > avail_height)) then
|
||||
begin
|
||||
if ((work_height + min_height > avail_height) and (y - real_height > avail_height)) then
|
||||
begin
|
||||
y := y - (work_height + list_requisition^.height + real_height);
|
||||
break;
|
||||
end;
|
||||
alloc_width := alloc_width -
|
||||
popup^.vscrollbar^.requisition.width +
|
||||
GTK_SCROLLED_WINDOW_CLASS(gtk_object_get_class(combo^.popup))^.scrollbar_spacing;
|
||||
show_vscroll := TRUE;
|
||||
okay_to_exit := False;
|
||||
end;
|
||||
until ((old_width <> alloc_width) or (old_height <> work_height) or okay_to_exit);
|
||||
|
||||
width := widget^.allocation.width;
|
||||
if (show_vscroll) then
|
||||
height := avail_height
|
||||
else
|
||||
height := work_height + list_requisition^.height;
|
||||
if (x < 0) then
|
||||
x := 0;
|
||||
|
||||
Dispose(list_requisition);
|
||||
end;
|
||||
|
||||
var
|
||||
ComboWidget: PGtkCombo;
|
||||
height, width, x, y : gint;
|
||||
old_width, old_height : gint;
|
||||
begin
|
||||
if not WSCheckHandleAllocated(ACustomComboBox, 'SetDroppedDown') then Exit;
|
||||
ComboWidget:=PGtkCombo(ACustomComboBox.Handle);
|
||||
if DropDown<>GTK_WIDGET_VISIBLE(ComboWidget^.popwin) then begin
|
||||
if DropDown then begin
|
||||
old_width := ComboWidget^.popwin^.allocation.width;
|
||||
old_height := ComboWidget^.popwin^.allocation.height;
|
||||
gtk_combo_get_pos(ComboWidget,x,y,height,width);
|
||||
if ((old_width <> width) or (old_height <> height)) then
|
||||
begin
|
||||
gtk_widget_hide (GTK_SCROLLED_WINDOW(ComboWidget^.popup)^.hscrollbar);
|
||||
gtk_widget_hide (GTK_SCROLLED_WINDOW(ComboWidget^.popup)^.vscrollbar);
|
||||
end;
|
||||
gtk_widget_set_uposition (comboWidget^.popwin,x, y);
|
||||
gtk_widget_set_usize(ComboWidget^.popwin,width ,height);
|
||||
gtk_widget_realize(ComboWidget^.popwin);
|
||||
|
||||
{$IFDEF DebugGDKTraps}
|
||||
BeginGDKErrorTrap;
|
||||
{$ENDIF}
|
||||
gdk_window_resize(ComboWidget^.popwin^.window,width,height);
|
||||
{$IFDEF DebugGDKTraps}
|
||||
EndGDKErrorTrap;
|
||||
{$ENDIF}
|
||||
|
||||
gtk_widget_show (ComboWidget^.popwin);
|
||||
gtk_widget_grab_focus(ComboWidget^.popwin);
|
||||
end else
|
||||
gtk_widget_hide (ComboWidget^.popwin);
|
||||
end;
|
||||
end;
|
||||
|
||||
class procedure TGtkWSCustomComboBox.SetCallbacks(const AGtkWidget: PGtkWidget;
|
||||
const AWidgetInfo: PWidgetInfo);
|
||||
begin
|
||||
|
@ -84,21 +84,6 @@ begin
|
||||
Result := TextOut(DC, X, Y, Str, Count);
|
||||
end;
|
||||
|
||||
function TGtk2WidgetSet.ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean;
|
||||
var
|
||||
WidgetInfo: PWidgetInfo;
|
||||
Combo: PGtkComboBox;
|
||||
begin
|
||||
WidgetInfo := GetWidgetInfo(Pointer(Handle), False);
|
||||
Combo := PGtkComboBox(WidgetInfo^.CoreWidget);
|
||||
|
||||
case DropDown of
|
||||
True : gtk_combo_box_popup(Combo);
|
||||
False: gtk_combo_box_popdown(Combo);
|
||||
end;
|
||||
Result:=true;
|
||||
end;
|
||||
|
||||
function TGtk2WidgetSet.SetComboMinDropDownSize(Handle: HWND; MinItemsWidth,
|
||||
MinItemsHeight, MinItemCount: integer): boolean;
|
||||
var
|
||||
|
@ -35,7 +35,6 @@ function ExtUTF8Out(DC: HDC; X, Y: Integer; Options: Longint; Rect: PRect;
|
||||
// override only when queried formats are different from screen description
|
||||
//function RawImage_QueryDescription(AFlags: TRawImageQueryFlags; var ADesc: TRawImageDescription): Boolean; override;
|
||||
function TextUTF8Out(DC: HDC; X, Y: Integer; Str: PChar; Count: Longint): Boolean; override;
|
||||
function ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean; override;
|
||||
function SetComboMinDropDownSize(Handle: HWND; MinItemsWidth, MinItemsHeight, MinItemCount: integer): boolean; override;
|
||||
|
||||
|
||||
|
@ -113,14 +113,16 @@ type
|
||||
class procedure GetPreferredSize(const AWinControl: TWinControl;
|
||||
var PreferredWidth, PreferredHeight: integer; WithThemeSpace: Boolean); override;
|
||||
|
||||
class function GetSelStart(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetSelLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetText(const AWinControl: TWinControl; var AText: String): Boolean; override;
|
||||
class function GetDroppedDown(const ACustomComboBox: TCustomComboBox): Boolean; override;
|
||||
class function GetSelStart(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetSelLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetText(const AWinControl: TWinControl; var AText: String): Boolean; override;
|
||||
|
||||
class procedure SetArrowKeysTraverseList(const ACustomComboBox: TCustomComboBox;
|
||||
NewTraverseList: boolean); override;
|
||||
class procedure SetDroppedDown(const ACustomComboBox: TCustomComboBox; ADroppedDown: Boolean); override;
|
||||
class procedure SetSelStart(const ACustomComboBox: TCustomComboBox; NewStart: integer); override;
|
||||
class procedure SetSelLength(const ACustomComboBox: TCustomComboBox; NewLength: integer); override;
|
||||
class procedure SetItemIndex(const ACustomComboBox: TCustomComboBox; NewIndex: integer); override;
|
||||
@ -1295,6 +1297,22 @@ begin
|
||||
PreferredWidth := 0;
|
||||
end;
|
||||
|
||||
class function TGtk2WSCustomComboBox.GetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox): Boolean;
|
||||
var
|
||||
WidgetInfo: PWidgetInfo;
|
||||
Combo: PGtkComboBox;
|
||||
AValue: TGValue;
|
||||
begin
|
||||
WidgetInfo := GetWidgetInfo(Pointer(ACustomComboBox.Handle), False);
|
||||
Combo := PGtkComboBox(WidgetInfo^.CoreWidget);
|
||||
|
||||
FillChar(AValue, SizeOf(AValue), 0);
|
||||
g_value_init(@AValue, G_TYPE_BOOLEAN);
|
||||
g_object_get_property(PGObject(Combo), 'popup-shown', @AValue);
|
||||
Result := AValue.data[0].v_int <> 0;
|
||||
end;
|
||||
|
||||
class function TGtk2WSCustomComboBox.GetSelStart(
|
||||
const ACustomComboBox: TCustomComboBox): integer;
|
||||
var
|
||||
@ -1392,6 +1410,21 @@ begin
|
||||
// we will have to eat the keystrokes to set this to false
|
||||
end;
|
||||
|
||||
class procedure TGtk2WSCustomComboBox.SetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox; ADroppedDown: Boolean);
|
||||
var
|
||||
WidgetInfo: PWidgetInfo;
|
||||
Combo: PGtkComboBox;
|
||||
begin
|
||||
WidgetInfo := GetWidgetInfo(Pointer(ACustomComboBox.Handle), False);
|
||||
Combo := PGtkComboBox(WidgetInfo^.CoreWidget);
|
||||
|
||||
case ADroppedDown of
|
||||
True : gtk_combo_box_popup(Combo);
|
||||
False: gtk_combo_box_popdown(Combo);
|
||||
end;
|
||||
end;
|
||||
|
||||
class procedure TGtk2WSCustomComboBox.SetSelStart(
|
||||
const ACustomComboBox: TCustomComboBox; NewStart: integer);
|
||||
var
|
||||
|
@ -270,35 +270,6 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
Method: TQtWidgetSet.ComboBoxDropDown
|
||||
Params: Handle: HWND; DropDown: boolean
|
||||
Returns:
|
||||
|
||||
Shows or hides combobox dropdown list via DropDown parameter.
|
||||
------------------------------------------------------------------------------}
|
||||
function TQtWidgetSet.ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean;
|
||||
var
|
||||
ComboList: QAbstractItemViewH;
|
||||
ComboBox: QComboBoxH;
|
||||
begin
|
||||
{$ifdef VerboseQtWinAPI}
|
||||
WriteLn('[WinAPI TQtWidgetSet.ComboBoxDropDown] ');
|
||||
{$endif}
|
||||
Result := False;
|
||||
if TQtWidget(Handle) is TQtComboBox then
|
||||
begin
|
||||
ComboBox := QComboBoxH(TQtComboBox(Handle).Widget);
|
||||
ComboList := QComboBox_view(ComboBox);
|
||||
if DropDown <> QWidget_isVisible(ComboList) then
|
||||
begin
|
||||
if DropDown then QComboBox_showPopup(ComboBox)
|
||||
else QComboBox_hidePopup(ComboBox);
|
||||
end;
|
||||
Result := True;
|
||||
end;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
Method: TQtWidgetSet.CreateCompatibleBitmap
|
||||
Params:
|
||||
|
@ -49,7 +49,6 @@ function ClipboardGetOwnerShip(ClipboardType: TClipboardType;
|
||||
function ClipboardRegisterFormat(const AMimeType: string): TClipboardFormat; override;
|
||||
|
||||
function CombineRgn(Dest, Src1, Src2: HRGN; fnCombineMode: Longint): Longint; override;
|
||||
function ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean; override;
|
||||
function CreateBitmap(Width, Height: Integer; Planes, BitCount: Longint; BitmapBits: Pointer): HBITMAP; override;
|
||||
function CreateBrushIndirect(const LogBrush: TLogBrush): HBRUSH; override;
|
||||
function CreateCaret(Handle : HWND; Bitmap : hBitmap; Width, Height : Integer) : Boolean; override;
|
||||
|
@ -73,6 +73,8 @@ type
|
||||
published
|
||||
class function CreateHandle(const AWinControl: TWinControl;
|
||||
const AParams: TCreateParams): TLCLIntfHandle; override;
|
||||
class function GetDroppedDown(const ACustomComboBox: TCustomComboBox
|
||||
): Boolean; override;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetItems(const ACustomComboBox: TCustomComboBox): TStrings; override;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
@ -86,6 +88,8 @@ type
|
||||
class procedure SetArrowKeysTraverseList(const ACustomComboBox: TCustomComboBox;
|
||||
NewTraverseList: boolean); override;
|
||||
class procedure SetDropDownCount(const ACustomComboBox: TCustomComboBox; NewCount: Integer); override;
|
||||
class procedure SetDroppedDown(const ACustomComboBox: TCustomComboBox;
|
||||
ADroppedDown: Boolean); override;
|
||||
class procedure SetItemIndex(const ACustomComboBox: TCustomComboBox; NewIndex: integer); override;
|
||||
class procedure SetMaxLength(const ACustomComboBox: TCustomComboBox; NewLength: integer); override;
|
||||
class procedure SetStyle(const ACustomComboBox: TCustomComboBox; NewStyle: TComboBoxStyle); override;
|
||||
@ -1133,6 +1137,17 @@ begin
|
||||
Result := TLCLIntfHandle(QtComboBox);
|
||||
end;
|
||||
|
||||
class function TQtWSCustomComboBox.GetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox): Boolean;
|
||||
var
|
||||
ComboList: QAbstractItemViewH;
|
||||
ComboBox: QComboBoxH;
|
||||
begin
|
||||
ComboBox := QComboBoxH(TQtComboBox(ACustomComboBox.Handle).Widget);
|
||||
ComboList := QComboBox_view(ComboBox);
|
||||
Result := QWidget_isVisible(ComboList);
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
Method: TQtWSCustomComboBox.GetItemIndex
|
||||
Params: None
|
||||
@ -1248,6 +1263,23 @@ begin
|
||||
TQtComboBox(ACustomComboBox.Handle).setMaxVisibleItems(NewCount);
|
||||
end;
|
||||
|
||||
class procedure TQtWSCustomComboBox.SetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox; ADroppedDown: Boolean);
|
||||
var
|
||||
ComboList: QAbstractItemViewH;
|
||||
ComboBox: QComboBoxH;
|
||||
begin
|
||||
ComboBox := QComboBoxH(TQtComboBox(ACustomComboBox.Handle).Widget);
|
||||
ComboList := QComboBox_view(ComboBox);
|
||||
if ADroppedDown <> QWidget_isVisible(ComboList) then
|
||||
begin
|
||||
if ADroppedDown then
|
||||
QComboBox_showPopup(ComboBox)
|
||||
else
|
||||
QComboBox_hidePopup(ComboBox);
|
||||
end;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
Method: TQtWSCustomComboBox.SetItemIndex
|
||||
Params: None
|
||||
|
@ -839,12 +839,6 @@ begin
|
||||
Result := Windows.CombineRgn(Dest, Src1, Src2, fnCombineMode);
|
||||
end;
|
||||
|
||||
function TWin32WidgetSet.ComboBoxDropDown(Handle: HWND;
|
||||
DropDown: boolean): boolean;
|
||||
begin
|
||||
Result:=boolean(Windows.SendMessage(Handle, CB_SHOWDROPDOWN, WPARAM(DropDown), 0));
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
Method: CreateBitmap
|
||||
Params: Width - bitmap width, in pixels
|
||||
|
@ -45,7 +45,6 @@ function ClipboardGetOwnerShip(ClipboardType: TClipboardType; OnRequestProc: TCl
|
||||
function ClipboardRegisterFormat(const AMimeType: String): TClipboardFormat; override;
|
||||
|
||||
function CombineRgn(Dest, Src1, Src2 : HRGN; fnCombineMode : Longint) : Longint; override;
|
||||
function ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean; override;
|
||||
function CreateBitmap(Width, Height: Integer; Planes, BitCount: LongInt; BitmapBits: Pointer): HBITMAP; override;
|
||||
function CreateBrushIndirect(const LogBrush: TLogBrush): HBRUSH; override;
|
||||
function CreateCaret(Handle: HWND; Bitmap: HBITMAP; Width, Height: Integer): Boolean; override;
|
||||
|
@ -82,15 +82,18 @@ type
|
||||
var Left, Top, Width, Height: integer; var SuppressMove: boolean); override;
|
||||
class procedure GetPreferredSize(const AWinControl: TWinControl;
|
||||
var PreferredWidth, PreferredHeight: integer; WithThemeSpace: Boolean); override;
|
||||
class function GetSelStart(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetSelLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetText(const AWinControl: TWinControl; var AText: string): boolean; override;
|
||||
class function GetDroppedDown(const ACustomComboBox: TCustomComboBox): Boolean; override;
|
||||
class function GetSelStart(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetSelLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetText(const AWinControl: TWinControl; var AText: string): boolean; override;
|
||||
|
||||
class procedure SetArrowKeysTraverseList(const ACustomComboBox: TCustomComboBox;
|
||||
NewTraverseList: boolean); override;
|
||||
class procedure SetDropDownCount(const ACustomComboBox: TCustomComboBox; NewCount: Integer); override;
|
||||
class procedure SetDroppedDown(const ACustomComboBox: TCustomComboBox;
|
||||
ADroppedDown: Boolean); override;
|
||||
class procedure SetSelStart(const ACustomComboBox: TCustomComboBox; NewStart: integer); override;
|
||||
class procedure SetSelLength(const ACustomComboBox: TCustomComboBox; NewLength: integer); override;
|
||||
class procedure SetItemIndex(const ACustomComboBox: TCustomComboBox; NewIndex: integer); override;
|
||||
@ -843,8 +846,18 @@ begin
|
||||
PreferredHeight := AWinControl.Height;
|
||||
end;
|
||||
|
||||
class function TWin32WSCustomComboBox.GetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox): Boolean;
|
||||
begin
|
||||
if not WSCheckHandleAllocated(ACustomComboBox, 'TWin32WSCustomComboBox.GetDroppedDown') then
|
||||
Exit(False);
|
||||
Result := LongBool(SendMessage(ACustomComboBox.Handle, CB_GETDROPPEDSTATE, 0, 0));
|
||||
end;
|
||||
|
||||
class function TWin32WSCustomComboBox.GetSelStart(const ACustomComboBox: TCustomComboBox): integer;
|
||||
begin
|
||||
if not WSCheckHandleAllocated(ACustomComboBox, 'TWin32WSCustomComboBox.GetSelStart') then
|
||||
Exit(-1);
|
||||
SendMessage(ACustomComboBox.Handle, CB_GETEDITSEL, Windows.WPARAM(@Result), Windows.LPARAM(nil));
|
||||
end;
|
||||
|
||||
@ -915,6 +928,13 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
class procedure TWin32WSCustomComboBox.SetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox; ADroppedDown: Boolean);
|
||||
begin
|
||||
if WSCheckHandleAllocated(ACustomComboBox, 'TWin32WSCustomComboBox.SetDroppedDown') then
|
||||
SendMessage(ACustomComboBox.Handle, CB_SHOWDROPDOWN, WPARAM(ADroppedDown), 0);
|
||||
end;
|
||||
|
||||
class procedure TWin32WSCustomComboBox.SetSelStart(const ACustomComboBox: TCustomComboBox; NewStart: integer);
|
||||
begin
|
||||
SendMessage(ACustomComboBox.Handle, CB_SETEDITSEL, 0, MakeLParam(NewStart, NewStart));
|
||||
|
@ -422,12 +422,6 @@ begin
|
||||
Result := Windows.CombineRgn(Dest, Src1, Src2, fnCombineMode);
|
||||
end;
|
||||
|
||||
function TWinCEWidgetSet.ComboBoxDropDown(Handle: HWND;
|
||||
DropDown: boolean): boolean;
|
||||
begin
|
||||
Result:=boolean(Windows.SendMessage(Handle, CB_SHOWDROPDOWN, WPARAM(DropDown), 0));
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
Method: CreateBitmap
|
||||
Params: Width - bitmap width, in pixels
|
||||
|
@ -61,7 +61,6 @@ function ClipboardGetOwnerShip(ClipboardType: TClipboardType;
|
||||
function ClipboardRegisterFormat(const AMimeType: string): TClipboardFormat; override;}
|
||||
|
||||
function CombineRgn(Dest, Src1, Src2 : HRGN; fnCombineMode : Longint) : Longint; override;
|
||||
function ComboBoxDropDown(Handle: HWND; DropDown: boolean): boolean; override;
|
||||
function CreateBitmap(Width, Height: Integer; Planes, BitCount: Longint; BitmapBits: Pointer): HBITMAP; override;
|
||||
function CreateBrushIndirect(const LogBrush: TLogBrush): HBRUSH; override;
|
||||
function CreateCaret(Handle : HWND; Bitmap : hBitmap; width, Height : Integer) : Boolean; override;
|
||||
|
@ -76,14 +76,17 @@ type
|
||||
const AParams: TCreateParams): HWND; override;
|
||||
class procedure AdaptBounds(const AWinControl: TWinControl;
|
||||
var Left, Top, Width, Height: integer; var SuppressMove: boolean); override;
|
||||
class function GetSelStart(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetSelLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetText(const AWinControl: TWinControl; var AText: string): boolean; override;
|
||||
class function GetDroppedDown(const ACustomComboBox: TCustomComboBox): Boolean; override;
|
||||
class function GetSelStart(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetSelLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; override;
|
||||
class function GetText(const AWinControl: TWinControl; var AText: string): boolean; override;
|
||||
|
||||
class procedure SetArrowKeysTraverseList(const ACustomComboBox: TCustomComboBox;
|
||||
NewTraverseList: boolean); override;
|
||||
class procedure SetDroppedDown(const ACustomComboBox: TCustomComboBox;
|
||||
ADroppedDown: Boolean); override;
|
||||
class procedure SetSelStart(const ACustomComboBox: TCustomComboBox; NewStart: integer); override;
|
||||
class procedure SetSelLength(const ACustomComboBox: TCustomComboBox; NewLength: integer); override;
|
||||
class procedure SetItemIndex(const ACustomComboBox: TCustomComboBox; NewIndex: integer); override;
|
||||
@ -703,6 +706,14 @@ begin
|
||||
Height := StringList.ComboHeight;
|
||||
end;
|
||||
|
||||
class function TWinCEWSCustomComboBox.GetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox): Boolean;
|
||||
begin
|
||||
if not WSCheckHandleAllocated(ACustomComboBox, 'TWinCEWSCustomComboBox.GetDroppedDown') then
|
||||
Exit(False);
|
||||
Result := LongBool(SendMessage(ACustomComboBox.Handle, CB_GETDROPPEDSTATE, 0, 0));
|
||||
end;
|
||||
|
||||
class function TWinCEWSCustomComboBox.GetSelStart(const ACustomComboBox: TCustomComboBox): integer;
|
||||
begin
|
||||
SendMessage(ACustomComboBox.Handle, CB_GETEDITSEL, Windows.WPARAM(@Result), Windows.LPARAM(nil));
|
||||
@ -758,6 +769,13 @@ begin
|
||||
// TODO: implement me?
|
||||
end;
|
||||
|
||||
class procedure TWinCEWSCustomComboBox.SetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox; ADroppedDown: Boolean);
|
||||
begin
|
||||
if WSCheckHandleAllocated(ACustomComboBox, 'TWin32WSCustomComboBox.SetDroppedDown') then
|
||||
SendMessage(ACustomComboBox.Handle, CB_SHOWDROPDOWN, WPARAM(ADroppedDown), 0);
|
||||
end;
|
||||
|
||||
class procedure TWinCEWSCustomComboBox.SetSelStart(const ACustomComboBox: TCustomComboBox; NewStart: integer);
|
||||
begin
|
||||
SendMessage(ACustomComboBox.Handle, CB_SETEDITSEL, 0, MakeLParam(NewStart, NewStart));
|
||||
|
@ -73,14 +73,16 @@ type
|
||||
|
||||
TWSCustomComboBox = class(TWSWinControl)
|
||||
published
|
||||
class function GetSelStart(const ACustomComboBox: TCustomComboBox): integer; virtual;
|
||||
class function GetSelLength(const ACustomComboBox: TCustomComboBox): integer; virtual;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; virtual;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; virtual;
|
||||
class function GetDroppedDown(const ACustomComboBox: TCustomComboBox): Boolean; virtual;
|
||||
class function GetSelStart(const ACustomComboBox: TCustomComboBox): integer; virtual;
|
||||
class function GetSelLength(const ACustomComboBox: TCustomComboBox): integer; virtual;
|
||||
class function GetItemIndex(const ACustomComboBox: TCustomComboBox): integer; virtual;
|
||||
class function GetMaxLength(const ACustomComboBox: TCustomComboBox): integer; virtual;
|
||||
|
||||
class procedure SetArrowKeysTraverseList(const ACustomComboBox: TCustomComboBox;
|
||||
NewTraverseList: boolean); virtual;
|
||||
class procedure SetDropDownCount(const ACustomComboBox: TCustomComboBox; NewCount: Integer); virtual;
|
||||
class procedure SetDroppedDown(const ACustomComboBox: TCustomComboBox; ADroppedDown: Boolean); virtual;
|
||||
class procedure SetSelStart(const ACustomComboBox: TCustomComboBox; NewStart: integer); virtual;
|
||||
class procedure SetSelLength(const ACustomComboBox: TCustomComboBox; NewLength: integer); virtual;
|
||||
class procedure SetItemIndex(const ACustomComboBox: TCustomComboBox; NewIndex: integer); virtual;
|
||||
@ -352,6 +354,12 @@ end;
|
||||
|
||||
{ TWSCustomComboBox }
|
||||
|
||||
class function TWSCustomComboBox.GetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox): Boolean;
|
||||
begin
|
||||
Result := False;
|
||||
end;
|
||||
|
||||
class function TWSCustomComboBox.GetSelStart(const ACustomComboBox: TCustomComboBox
|
||||
): integer;
|
||||
begin
|
||||
@ -386,6 +394,11 @@ class procedure TWSCustomComboBox.SetDropDownCount(
|
||||
begin
|
||||
end;
|
||||
|
||||
class procedure TWSCustomComboBox.SetDroppedDown(
|
||||
const ACustomComboBox: TCustomComboBox; ADroppedDown: Boolean);
|
||||
begin
|
||||
end;
|
||||
|
||||
class procedure TWSCustomComboBox.SetMaxLength(const ACustomComboBox: TCustomComboBox;
|
||||
NewLength: integer);
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user