Commit 4e6938ca authored by David Brown's avatar David Brown
Browse files

Choices 'fakepage' display added.

parent 2e86b9d4
No preview for this file type
This diff is collapsed.
...@@ -51,6 +51,7 @@ ...@@ -51,6 +51,7 @@
#include "Browser.h" #include "Browser.h"
#include "ChoiceDefs.h" #include "ChoiceDefs.h"
#include "Choices.h"
#include "FetchPage.h" #include "FetchPage.h"
#include "Filetypes.h" #include "Filetypes.h"
#include "FontManage.h" #include "FontManage.h"
...@@ -242,6 +243,7 @@ int handle_messages(WimpMessage * m, void * handle) ...@@ -242,6 +243,7 @@ int handle_messages(WimpMessage * m, void * handle)
} }
ChkError(windows_initialise_tool_sizes()); ChkError(windows_initialise_tool_sizes());
ChkError(choices_mode_change());
} }
break; break;
......
...@@ -23,6 +23,11 @@ ...@@ -23,6 +23,11 @@
/* History: 23-Sep-97: Created. */ /* History: 23-Sep-97: Created. */
/***************************************************/ /***************************************************/
/* Define this if you want to display the Selected colour */
/* in the faked page. */
#define ChoiceUseSelected
/* Choices main dialogue component IDs */ /* Choices main dialogue component IDs */
#define CDSet 0x2600 #define CDSet 0x2600
...@@ -113,9 +118,14 @@ ...@@ -113,9 +118,14 @@
#define CD_FolwColourBt 0x2699 #define CD_FolwColourBt 0x2699
#define CD_SlctColour 0x269a #define CD_SlctColour 0x269a
#define CD_SlctColourBt 0x269b #define CD_SlctColourBt 0x269b
#define CD_FakePage 0x269c
/* In fonts subwindow */
#define CD_Fontsbits 0x26b0 #define CD_Fontsbits 0x26b0
/* In hotlist subwindow */
#define CD_HlSaveDisp 0x26d0 #define CD_HlSaveDisp 0x26d0
#define CD_HlSaveBt 0x26d1 #define CD_HlSaveBt 0x26d1
#define CD_HlDispDisp 0x26d2 #define CD_HlDispDisp 0x26d2
...@@ -123,6 +133,8 @@ ...@@ -123,6 +133,8 @@
#define CD_HlAutoOpen 0x26d4 #define CD_HlAutoOpen 0x26d4
#define CD_HlAutoScroll 0x26d5 #define CD_HlAutoScroll 0x26d5
/* In history subwindow */
#define CD_HiSaveDisp 0x26f0 #define CD_HiSaveDisp 0x26f0
#define CD_HiSaveBt 0x26f1 #define CD_HiSaveBt 0x26f1
#define CD_HiDispDisp 0x26f2 #define CD_HiDispDisp 0x26f2
...@@ -147,3 +159,4 @@ extern ObjectId choices_windowid; ...@@ -147,3 +159,4 @@ extern ObjectId choices_windowid;
int choices_to_be_shown (int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle); int choices_to_be_shown (int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle);
int choices_hidden (int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle); int choices_hidden (int eventcode, ToolboxEvent * event, IdBlock * idb, void * handle);
_kernel_oserror * choices_set_encoding_field (void); _kernel_oserror * choices_set_encoding_field (void);
_kernel_oserror * choices_mode_change (void);
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment