1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-15 21:45:54 +01:00

added a runtime disabling of multibyte text support

This commit is contained in:
kojima
1999-05-30 02:23:58 +00:00
parent bdd18ccdf0
commit c8cbc630c4
6 changed files with 47 additions and 20 deletions

View File

@@ -155,13 +155,14 @@ typedef struct W_Screen {
GC ixorGC; /* IncludeInferiors XOR */
GC textFieldGC;
W_Font *normalFont;
W_Font *boldFont;
WMHashTable *fontCache;
Bool useMultiByte;
struct W_Balloon *balloon;
@@ -317,11 +318,11 @@ typedef struct W_View {
typedef struct W_EventHandler {
unsigned long eventMask;
WMEventProc *proc;
void *clientData;
struct W_EventHandler *nextHandler;
} W_EventHandler;
@@ -331,6 +332,7 @@ typedef struct W_EventHandler {
typedef struct _WINGsConfiguration {
char *systemFont;
char *boldSystemFont;
Bool useMultiByte;
unsigned doubleClickDelay;
} _WINGsConfiguration;