mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 03:58:01 +02:00
558 lines
14 KiB
ObjectPascal
558 lines
14 KiB
ObjectPascal
unit MUIWSFactory;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, forms, Controls, StdCtrls, Menus, Dialogs, ComCtrls, Buttons,
|
|
Spin,
|
|
MuiWSControls, MUIwsforms, MuiWSMenus, MUIWSStdCtrls,
|
|
MuiWSDialogs, MuiWSComCtrls, MUIWSButtons, MUIWSSpin,
|
|
WSLCLClasses, WSDialogs;
|
|
|
|
// imglist
|
|
function RegisterCustomImageListResolution: Boolean;
|
|
// controls
|
|
function RegisterDragImageListResolution: Boolean;
|
|
function RegisterLazAccessibleObject: Boolean;
|
|
function RegisterControl: Boolean;
|
|
function RegisterWinControl: Boolean;
|
|
function RegisterGraphicControl: Boolean;
|
|
function RegisterCustomControl: Boolean;
|
|
// comctrls
|
|
function RegisterStatusBar: Boolean;
|
|
function RegisterTabSheet: Boolean;
|
|
function RegisterPageControl: Boolean;
|
|
function RegisterCustomListView: Boolean;
|
|
function RegisterCustomProgressBar: Boolean;
|
|
function RegisterCustomUpDown: Boolean;
|
|
function RegisterCustomToolButton: Boolean;
|
|
function RegisterToolBar: Boolean;
|
|
function RegisterCustomTrackBar: Boolean;
|
|
function RegisterCustomTreeView: Boolean;
|
|
// calendar
|
|
function RegisterCustomCalendar: Boolean;
|
|
// dialogs
|
|
function RegisterCommonDialog: Boolean;
|
|
function RegisterFileDialog: Boolean;
|
|
function RegisterOpenDialog: Boolean;
|
|
function RegisterSaveDialog: Boolean;
|
|
function RegisterSelectDirectoryDialog: Boolean;
|
|
function RegisterColorDialog: Boolean;
|
|
function RegisterColorButton: Boolean;
|
|
function RegisterFontDialog: Boolean;
|
|
function RegisterTaskDialog: Boolean;
|
|
// StdCtrls
|
|
function RegisterCustomScrollBar: Boolean;
|
|
function RegisterCustomGroupBox: Boolean;
|
|
function RegisterCustomComboBox: Boolean;
|
|
function RegisterCustomListBox: Boolean;
|
|
function RegisterCustomEdit: Boolean;
|
|
function RegisterCustomMemo: Boolean;
|
|
function RegisterButtonControl: Boolean;
|
|
function RegisterCustomButton: Boolean;
|
|
function RegisterCustomCheckBox: Boolean;
|
|
function RegisterToggleBox: Boolean;
|
|
function RegisterRadioButton: Boolean;
|
|
function RegisterCustomStaticText: Boolean;
|
|
function RegisterCustomLabel: Boolean;
|
|
// extctrls
|
|
function RegisterCustomPage: Boolean;
|
|
function RegisterCustomNotebook: Boolean;
|
|
function RegisterCustomShape: Boolean;
|
|
function RegisterCustomSplitter: Boolean;
|
|
function RegisterPaintBox: Boolean;
|
|
function RegisterCustomImage: Boolean;
|
|
function RegisterBevel: Boolean;
|
|
function RegisterCustomRadioGroup: Boolean;
|
|
function RegisterCustomCheckGroup: Boolean;
|
|
function RegisterCustomLabeledEdit: Boolean;
|
|
function RegisterCustomPanel: Boolean;
|
|
function RegisterCustomTrayIcon: Boolean;
|
|
//ExtDlgs
|
|
function RegisterPreviewFileControl: Boolean;
|
|
function RegisterPreviewFileDialog: Boolean;
|
|
function RegisterOpenPictureDialog: Boolean;
|
|
function RegisterSavePictureDialog: Boolean;
|
|
function RegisterCalculatorDialog: Boolean;
|
|
function RegisterCalculatorForm: Boolean;
|
|
function RegisterCalendarDialog: Boolean;
|
|
// Buttons
|
|
function RegisterCustomBitBtn: Boolean;
|
|
function RegisterCustomSpeedButton: Boolean;
|
|
// Arrow
|
|
function RegisterArrow: Boolean;
|
|
// CheckLst
|
|
function RegisterCustomCheckListBox: Boolean;
|
|
// Forms
|
|
function RegisterScrollingWinControl: Boolean;
|
|
function RegisterScrollBox: Boolean;
|
|
function RegisterCustomFrame: Boolean;
|
|
function RegisterCustomForm: Boolean;
|
|
function RegisterHintWindow: Boolean;
|
|
function RegisterCustomGrid: Boolean;
|
|
function RegisterMenuItem: Boolean;
|
|
function RegisterMenu: Boolean;
|
|
function RegisterMainMenu: Boolean;
|
|
function RegisterPopupMenu: Boolean;
|
|
function RegisterPairSplitterSide: Boolean;
|
|
function RegisterCustomPairSplitter: Boolean;
|
|
function RegisterCustomFloatSpinEdit: Boolean;
|
|
function RegisterCustomRubberBand: Boolean;
|
|
// ShellCtrls
|
|
function RegisterCustomShellTreeView: Boolean;
|
|
// LazDeviceAPIs
|
|
function RegisterLazDeviceAPIs: Boolean;
|
|
|
|
implementation
|
|
|
|
// imglist
|
|
function RegisterCustomImageListResolution: Boolean; alias : 'WSRegisterCustomImageListResolution';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// controls
|
|
function RegisterDragImageListResolution: Boolean; alias : 'WSRegisterDragImageListResolution';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterLazAccessibleObject: Boolean; alias : 'WSRegisterLazAccessibleObject';
|
|
begin
|
|
// RegisterWSLazAccessibleObject(TGtk2WSLazAccessibleObject);
|
|
// Result := True;
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterControl: Boolean; alias : 'WSRegisterControl';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterWinControl: Boolean; alias : 'WSRegisterWinControl';
|
|
begin
|
|
RegisterWSComponent(TWinControl, TMuiWSWinControl);
|
|
Result := True;
|
|
//Result := False;
|
|
end;
|
|
|
|
function RegisterGraphicControl: Boolean; alias : 'WSRegisterGraphicControl';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomControl: Boolean; alias : 'WSRegisterCustomControl';
|
|
begin
|
|
//RegisterWSComponent(TCustomControl, TMuiWSCustomControl);
|
|
Result := False;
|
|
end;
|
|
|
|
// comctrls
|
|
function RegisterStatusBar: Boolean; alias : 'WSRegisterStatusBar';
|
|
begin
|
|
RegisterWSComponent(TStatusBar, TMuiWSStatusBar);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterTabSheet: Boolean; alias : 'WSRegisterTabSheet';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterPageControl: Boolean; alias : 'WSRegisterPageControl';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomListView: Boolean; alias : 'WSRegisterCustomListView';
|
|
begin
|
|
RegisterWSComponent(TCustomListView, TMUIWSCustomListView);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomProgressBar: Boolean; alias : 'WSRegisterCustomProgressBar';
|
|
begin
|
|
RegisterWSComponent(TCustomProgressBar, TMuiWSProgressBar);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomUpDown: Boolean; alias : 'WSRegisterCustomUpDown';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomToolButton: Boolean; alias : 'WSRegisterCustomToolButton';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterToolBar: Boolean; alias : 'WSRegisterToolBar';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomTrackBar: Boolean; alias : 'WSRegisterCustomTrackBar';
|
|
begin
|
|
RegisterWSComponent(TCustomTrackBar, TMUIWSTrackBar);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomTreeView: Boolean; alias : 'WSRegisterCustomTreeView';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// calendar
|
|
function RegisterCustomCalendar: Boolean; alias : 'WSRegisterCustomCalendar';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// dialogs
|
|
function RegisterCommonDialog: Boolean; alias : 'WSRegisterCommonDialog';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterFileDialog: Boolean; alias : 'WSRegisterFileDialog';
|
|
begin
|
|
RegisterWSComponent(TFileDialog, TMuiWSFileDialog);
|
|
Result := True;
|
|
//Result := False;
|
|
end;
|
|
|
|
function RegisterOpenDialog: Boolean; alias : 'WSRegisterOpenDialog';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterSaveDialog: Boolean; alias : 'WSRegisterSaveDialog';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterSelectDirectoryDialog: Boolean; alias : 'WSRegisterSelectDirectoryDialog';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterColorDialog: Boolean; alias : 'WSRegisterColorDialog';
|
|
begin
|
|
RegisterWSComponent(TColorDialog, TMuiWSColorDialog);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterColorButton: Boolean; alias : 'WSRegisterColorButton';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterFontDialog: Boolean; alias : 'WSRegisterFontDialog';
|
|
begin
|
|
RegisterWSComponent(TFontDialog, TMuiWSFontDialog);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterTaskDialog: Boolean; alias : 'WSRegisterTaskDialog';
|
|
begin
|
|
RegisterWSComponent(TTaskDialog, TWSTaskDialog);
|
|
Result := True;
|
|
end;
|
|
|
|
// StdCtrls
|
|
function RegisterCustomScrollBar: Boolean; alias : 'WSRegisterCustomScrollBar';
|
|
begin
|
|
RegisterWSComponent(TCustomScrollBar, TMUIWSScrollBar);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomGroupBox: Boolean; alias : 'WSRegisterCustomGroupBox';
|
|
begin
|
|
RegisterWSComponent(TCustomGroupBox, TMUIWSCustomGroupBox);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomComboBox: Boolean; alias : 'WSRegisterCustomComboBox';
|
|
begin
|
|
RegisterWSComponent(TCustomComboBox, TMUIWSCustomComboBox);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomListBox: Boolean; alias : 'WSRegisterCustomListBox';
|
|
begin
|
|
RegisterWSComponent(TCustomListBox, TMUIWSCustomListBox);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomEdit: Boolean; alias : 'WSRegisterCustomEdit';
|
|
begin
|
|
RegisterWSComponent(TCustomEdit, TMUIWSCustomEdit);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomMemo: Boolean; alias : 'WSRegisterCustomMemo';
|
|
begin
|
|
RegisterWSComponent(TCustomMemo, TMUIWSCustomMemo);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterButtonControl: Boolean; alias : 'WSRegisterButtonControl';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomButton: Boolean; alias : 'WSRegisterCustomButton';
|
|
begin
|
|
RegisterWSComponent(TCustomButton, TMUIWSButton);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomCheckBox: Boolean; alias : 'WSRegisterCustomCheckBox';
|
|
begin
|
|
RegisterWSComponent(TCustomCheckBox, TMUIWSCustomCheckBox);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterToggleBox: Boolean; alias : 'WSRegisterToggleBox';
|
|
begin
|
|
RegisterWSComponent(TToggleBox, TMUIWSToggleBox);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterRadioButton: Boolean; alias : 'WSRegisterRadioButton';
|
|
begin
|
|
RegisterWSComponent(TRadioButton, TMUIWSRadioButton);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomStaticText: Boolean; alias : 'WSRegisterCustomStaticText';
|
|
begin
|
|
RegisterWSComponent(TCustomStaticText, TMUIWSCustomStaticText);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomLabel: Boolean; alias : 'WSRegisterCustomLabel';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// extctrls
|
|
function RegisterCustomPage: Boolean; alias : 'WSRegisterCustomPage';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomNotebook: Boolean; alias : 'WSRegisterCustomNotebook';
|
|
begin
|
|
RegisterWSComponent(TCustomTabControl, TMUIWSCustomTabControl);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomShape: Boolean; alias : 'WSRegisterCustomShape';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomSplitter: Boolean; alias : 'WSRegisterCustomSplitter';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterPaintBox: Boolean; alias : 'WSRegisterPaintBox';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomImage: Boolean; alias : 'WSRegisterCustomImage';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterBevel: Boolean; alias : 'WSRegisterBevel';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomRadioGroup: Boolean; alias : 'WSRegisterCustomRadioGroup';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomCheckGroup: Boolean; alias : 'WSRegisterCustomCheckGroup';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomLabeledEdit: Boolean; alias : 'WSRegisterCustomLabeledEdit';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomPanel: Boolean; alias : 'WSRegisterCustomPanel';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomTrayIcon: Boolean; alias : 'WSRegisterCustomTrayIcon';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
//ExtDlgs
|
|
function RegisterPreviewFileControl: Boolean; alias : 'WSRegisterPreviewFileControl';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterPreviewFileDialog: Boolean; alias : 'WSRegisterPreviewFileDialog';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterOpenPictureDialog: Boolean; alias : 'WSRegisterOpenPictureDialog';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterSavePictureDialog: Boolean; alias : 'WSRegisterSavePictureDialog';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCalculatorDialog: Boolean; alias : 'WSRegisterCalculatorDialog';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCalculatorForm: Boolean; alias : 'WSRegisterCalculatorForm';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCalendarDialog: Boolean; alias : 'WSRegisterCalendarDialog';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// Buttons
|
|
function RegisterCustomBitBtn: Boolean; alias : 'WSRegisterCustomBitBtn';
|
|
begin
|
|
RegisterWSComponent(TCustomBitBtn, TMUIWSBitBtn);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterCustomSpeedButton: Boolean; alias : 'WSRegisterCustomSpeedButton';
|
|
begin
|
|
//RegisterWSComponent(TCustomSpeedButton, TMUIWSSpeedButton);
|
|
//Result := True;
|
|
Result := False;
|
|
end;
|
|
|
|
// Arrow
|
|
function RegisterArrow: Boolean; alias : 'WSRegisterArrow';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// CheckLst
|
|
function RegisterCustomCheckListBox: Boolean; alias : 'WSRegisterCustomCheckListBox';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// Forms
|
|
function RegisterScrollingWinControl: Boolean; alias : 'WSRegisterScrollingWinControl';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterScrollBox: Boolean; alias : 'WSRegisterScrollBox';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomFrame: Boolean; alias : 'WSRegisterCustomFrame';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomForm: Boolean; alias : 'WSRegisterCustomForm';
|
|
begin
|
|
RegisterWSComponent(TCustomForm, TMUIWSCustomForm);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterHintWindow: Boolean; alias : 'WSRegisterHintWindow';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// Grids
|
|
function RegisterCustomGrid: Boolean; alias : 'WSRegisterCustomGrid';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// Menus
|
|
function RegisterMenuItem: Boolean; alias : 'WSRegisterMenuItem';
|
|
begin
|
|
RegisterWSComponent(TMenuItem, TMUIWSMenuItem);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterMenu: Boolean; alias : 'WSRegisterMenu';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterMainMenu: Boolean; alias : 'WSRegisterMainMenu';
|
|
begin
|
|
RegisterWSComponent(TMainMenu, TMUIWSMainMenu);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterPopupMenu: Boolean; alias : 'WSRegisterPopupMenu';
|
|
begin
|
|
RegisterWSComponent(TPopupMenu, TMUIWSPopupMenu);
|
|
Result := True;
|
|
end;
|
|
|
|
function RegisterPairSplitterSide: Boolean; alias : 'WSRegisterPairSplitterSide';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomPairSplitter: Boolean; alias : 'WSRegisterCustomPairSplitter';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
// Spin
|
|
function RegisterCustomFloatSpinEdit: Boolean; alias : 'WSRegisterCustomFloatSpinEdit';
|
|
begin
|
|
RegisterWSComponent(TCustomFloatSpinEdit, TMUIWSCustomFloatSpinEdit);
|
|
Result := True;
|
|
end;
|
|
|
|
// RubberBand
|
|
function RegisterCustomRubberBand: Boolean; alias : 'WSRegisterCustomRubberBand';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterCustomShellTreeView: Boolean; alias : 'WSRegisterCustomShellTreeView';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
function RegisterLazDeviceAPIs: Boolean; alias : 'WSRegisterLazDeviceAPIs';
|
|
begin
|
|
Result := False;
|
|
end;
|
|
|
|
|
|
end.
|
|
|