105 lines
3.8 KiB
C
105 lines
3.8 KiB
C
|
#include "fvwmlib.h"
|
||
|
|
||
|
/* FvwmWinList Module for Fvwm.
|
||
|
*
|
||
|
* Copyright 1994, Mike Finger (mfinger@mermaid.micro.umn.edu or
|
||
|
* Mike_Finger@atk.com)
|
||
|
*
|
||
|
* The author makes not guarantees or warantees, either express or
|
||
|
* implied. Feel free to use any contained here for any purpose, as long
|
||
|
* and this and any other applicible copyrights are kept intact.
|
||
|
|
||
|
* The functions in this header file that are based on part of the FvwmIdent
|
||
|
* module for Fvwm are noted by a small copyright atop that function, all others
|
||
|
* are copyrighted by Mike Finger. For those functions modified/used, here is
|
||
|
* the full, original copyright:
|
||
|
*
|
||
|
* Copyright 1994, Robert Nation and Nobutaka Suzuki.
|
||
|
* No guarantees or warantees or anything
|
||
|
* are provided or implied in any way whatsoever. Use this program at your
|
||
|
* own risk. Permission to use this program for any purpose is given,
|
||
|
* as long as the copyright is kept intact. */
|
||
|
|
||
|
#define STICKY (1<<2) /* Does window stick to glass? */
|
||
|
#define ONTOP (1<<1) /* does window stay on top */
|
||
|
#define BORDER (1<<13) /* Is this decorated with border*/
|
||
|
#define TITLE (1<<14) /* Is this decorated with title */
|
||
|
#define ICONIFIED (1<<16) /* is it an icon now? */
|
||
|
#define TRANSIENT (1<<17) /* is it a transient window? */
|
||
|
#define WINDOWLISTSKIP (1<<3)
|
||
|
|
||
|
/* Motif window hints */
|
||
|
typedef struct
|
||
|
{
|
||
|
CARD32 flags;
|
||
|
CARD32 functions;
|
||
|
CARD32 decorations;
|
||
|
INT32 inputMode;
|
||
|
} PropMotifWmHints;
|
||
|
|
||
|
typedef PropMotifWmHints PropMwmHints;
|
||
|
|
||
|
/* Motif window hints */
|
||
|
#define MWM_HINTS_FUNCTIONS (1L << 0)
|
||
|
#define MWM_HINTS_DECORATIONS (1L << 1)
|
||
|
#define MWM_HINTS_INPUT_MODE (1L << 2)
|
||
|
|
||
|
/* bit definitions for MwmHints.functions */
|
||
|
#define MWM_FUNC_ALL (1L << 0)
|
||
|
#define MWM_FUNC_RESIZE (1L << 1)
|
||
|
#define MWM_FUNC_MOVE (1L << 2)
|
||
|
#define MWM_FUNC_MINIMIZE (1L << 3)
|
||
|
#define MWM_FUNC_MAXIMIZE (1L << 4)
|
||
|
#define MWM_FUNC_CLOSE (1L << 5)
|
||
|
|
||
|
/* values for MwmHints.input_mode */
|
||
|
#define MWM_INPUT_MODELESS 0
|
||
|
#define MWM_INPUT_PRIMARY_APPLICATION_MODAL 1
|
||
|
#define MWM_INPUT_SYSTEM_MODAL 2
|
||
|
#define MWM_INPUT_FULL_APPLICATION_MODAL 3
|
||
|
|
||
|
/* bit definitions for MwmHints.decorations */
|
||
|
#define MWM_DECOR_ALL (1L << 0)
|
||
|
#define MWM_DECOR_BORDER (1L << 1)
|
||
|
#define MWM_DECOR_RESIZEH (1L << 2)
|
||
|
#define MWM_DECOR_TITLE (1L << 3)
|
||
|
#define MWM_DECOR_MENU (1L << 4)
|
||
|
#define MWM_DECOR_MINIMIZE (1L << 5)
|
||
|
#define MWM_DECOR_MAXIMIZE (1L << 6)
|
||
|
|
||
|
#define PROP_MOTIF_WM_HINTS_ELEMENTS 4
|
||
|
#define PROP_MWM_HINTS_ELEMENTS PROP_MOTIF_WM_HINTS_ELEMENTS
|
||
|
|
||
|
/* default values for configuration parameters */
|
||
|
#define DEFMAXWIDTH 10000
|
||
|
#define DEFMINWIDTH 0
|
||
|
|
||
|
/*************************************************************************
|
||
|
Subroutine Prototypes
|
||
|
**************************************************************************/
|
||
|
void MainEventLoop(void);
|
||
|
void ReadFvwmPipe(void);
|
||
|
void ProcessMessage(unsigned long type,unsigned long *body);
|
||
|
void SendFvwmPipe(char *message,unsigned long window);
|
||
|
void DeadPipe(int nonsense) __attribute__((noreturn));
|
||
|
void MakeMeWindow(void);
|
||
|
void WaitForExpose(void);
|
||
|
void RedrawWindow(int force);
|
||
|
void StartMeUp(void);
|
||
|
void ShutMeDown(void);
|
||
|
void ConsoleMessage(const char *fmt,...) __attribute__((format(printf,1,2)));
|
||
|
int OpenConsole(void);
|
||
|
void ParseConfig(void);
|
||
|
void LoopOnEvents(void);
|
||
|
void AdjustWindow(void);
|
||
|
char *makename(const char *string,long flags);
|
||
|
void ChangeWindowName(char *str);
|
||
|
void LinkAction(char *string);
|
||
|
void AddToSkipList(char *string);
|
||
|
int InSkipList(char *string);
|
||
|
void PrintSkipList(void);
|
||
|
void FvwmNameMessage(long *body);
|
||
|
void SetMwmHints(unsigned int value,unsigned int funcs,unsigned int input);
|
||
|
|
||
|
int ErrorHandler(Display *d, XErrorEvent *event);
|