1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-03-16 23:43:32 +01:00

Latest fixes for released 0.51.0

This commit is contained in:
dan
1999-01-29 08:11:17 +00:00
parent d694d6fe1c
commit 931a37b124
56 changed files with 2916 additions and 2383 deletions

View File

@@ -175,6 +175,14 @@ enum {
WMDownTextMovement
};
/* text field special events */
enum {
WMSetTextEvent,
WMInsertTextEvent,
WMDeleteTextEvent
};
typedef enum {
WMGrayModeColorPanel,
WMRGBModeColorPanel,
@@ -764,6 +772,10 @@ void WMSetTextFieldEnabled(WMTextField *tPtr, Bool flag);
void WMSetTextFieldSecure(WMTextField *tPtr, Bool flag);
void WMSelectTextFieldRange(WMTextField *tPtr, WMRange range);
void WMSetTextFieldCursorPosition(WMTextField *tPtr, unsigned int position);
extern char *WMListDidScrollNotification;
extern char *WMTextDidChangeNotification;
@@ -1032,9 +1044,11 @@ WMOpenPanel *WMGetOpenPanel(WMScreen *scrPtr);
WMSavePanel *WMGetSavePanel(WMScreen *scrPtr);
void WMSetFilePanelCanChooseDirectories(WMFilePanel *panel, int flag);
void WMSetFilePanelCanChooseDirectories(WMFilePanel *panel, Bool flag);
void WMSetFilePanelCanChooseFiles(WMFilePanel *panel, int flag);
void WMSetFilePanelCanChooseFiles(WMFilePanel *panel, Bool flag);
void WMSetFilePanelAutoCompletion(WMFilePanel *panel, Bool flag);
void WMSetFilePanelDirectory(WMFilePanel *panel, char *path);