mirror of
https://github.com/gryf/wmaker.git
synced 2026-02-15 13:35:53 +01:00
Update for 0.51.0
This commit is contained in:
@@ -113,7 +113,7 @@ typedef enum {
|
||||
WALeft,
|
||||
WACenter,
|
||||
WARight,
|
||||
WMJustified /* not valid for textfields */
|
||||
WAJustified /* not valid for textfields */
|
||||
} WMAlignment;
|
||||
|
||||
|
||||
@@ -175,6 +175,17 @@ enum {
|
||||
WMDownTextMovement
|
||||
};
|
||||
|
||||
typedef enum {
|
||||
WMGrayModeColorPanel,
|
||||
WMRGBModeColorPanel,
|
||||
WMCMYKModeColorPanel,
|
||||
WMHSBModeColorPanel,
|
||||
WMCustomPaletteModeColorPanel,
|
||||
WMColorListModeColorPanel,
|
||||
WMWheelModeColorPanel
|
||||
} WMColorPanelMode;
|
||||
|
||||
|
||||
|
||||
/* system images */
|
||||
#define WSIReturnArrow 1
|
||||
@@ -282,6 +293,8 @@ typedef WMFilePanel WMSavePanel;
|
||||
|
||||
typedef struct W_FontPanel WMFontPanel;
|
||||
|
||||
typedef struct W_ColorPanel WMColorPanel;
|
||||
|
||||
|
||||
/* item for WMList */
|
||||
typedef struct WMListItem {
|
||||
@@ -370,8 +383,18 @@ typedef WMWidget *WMMatrixCreateCellProc(WMMatrix *mPtr);
|
||||
typedef void WMBrowserFillColumnProc(WMBrowser *bPtr, int column);
|
||||
|
||||
|
||||
typedef Bool WMConvertSelectionProc(WMWidget *w, Atom selection, Atom target,
|
||||
Atom *type, void **value, unsigned *length,
|
||||
int *format);
|
||||
|
||||
typedef void WMLoseSelectionProc(WMWidget *w, Atom selection);
|
||||
|
||||
typedef void WMSelectionDoneProc(WMWidget *w, Atom selection, Atom target);
|
||||
|
||||
/* ....................................................................... */
|
||||
|
||||
|
||||
|
||||
void WMInitializeApplication(char *applicationName, int *argc, char **argv);
|
||||
|
||||
void WMSetApplicationDataPath(char *path);
|
||||
@@ -889,6 +912,20 @@ void WMSetPopUpButtonEnabled(WMPopUpButton *bPtr, Bool flag);
|
||||
|
||||
/* ....................................................................... */
|
||||
|
||||
WMColorPanel *WMGetColorPanel(WMScreen *scrPtr);
|
||||
|
||||
void WMFreeColorPanel(WMColorPanel *panel);
|
||||
|
||||
int WMRunColorPanel(WMColorPanel *panel, WMWindow *owner, RColor color);
|
||||
|
||||
void WMSetColorPanelColor(WMColorPanel *panel, RColor color);
|
||||
|
||||
RColor WMGetColorPanelColor(WMColorPanel *panel);
|
||||
|
||||
void WMSetPickerMode(WMColorPanel *panel, WMColorPanelMode mode);
|
||||
|
||||
/* ....................................................................... */
|
||||
|
||||
WMColorWell *WMCreateColorWell(WMWidget *parent);
|
||||
|
||||
void WMSetColorWellColor(WMColorWell *cPtr, WMColor *color);
|
||||
|
||||
Reference in New Issue
Block a user