File: wstatbar.c

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (82 lines) | stat: -rw-r--r-- 1,791 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82

/* Copyright (C) 1998 Chancelier Jean-Philippe */
/*********************************************
 *   STATBAR.C -- Status bar helper functions.
 *              (c) Paul Yao, 1996
 * Modifications for Scilab 
 *   Jean-Philipe Chancelier (1997)
 *   Bugs and mail : Scilab@inria.fr 
 *********************************************/


#ifndef STRICT
#define STRICT
#endif
#include <windows.h>
#include <windowsx.h>
#include <commdlg.h>
#ifndef __GNUC__
#include <commctrl.h>
#endif

typedef struct tagPOPUPSTRING
  {
    HMENU hMenu;
    UINT uiString;
  }
POPUPSTRING;

#define MAX_MENUS 5

static POPUPSTRING popstr[MAX_MENUS];

DWORD dwStatusBarStyles = WS_CHILD | WS_VISIBLE |
WS_CLIPSIBLINGS | CCS_BOTTOM |
SBARS_SIZEGRIP;


/*-------------------------------------------------------------------*/

HWND 
InitStatusBar (HWND hwndParent)
{
  HWND hwndSB;
  /* Initialize values for WM_MENUSELECT message handling */
  hwndSB = CreateStatusWindow (dwStatusBarStyles,
			       "Ready",
			       hwndParent,
			       2);
  return hwndSB;
}

/**********************************
 * Not used XXXXX to be finished 
 * GADGET in PETZOLD 
 ********************************/

LRESULT
Statusbar_MenuSelect (HWND hwnd, WPARAM wParam, LPARAM lParam)
{
  UINT fuFlags = (UINT) HIWORD (wParam);
  HMENU hMainMenu = NULL;
  int iMenu = 0;
  /* Handle non-system popup menu descriptions. */
  if ((fuFlags & MF_POPUP) &&
      (!(fuFlags & MF_SYSMENU)))
    {
      for (iMenu = 1; iMenu < MAX_MENUS; iMenu++)
	{
	  if ((HMENU) lParam == popstr[iMenu].hMenu)
	    {
	      hMainMenu = (HMENU) lParam;
	      break;
	    }
	}
    }

  /* Display helpful text in status bar
     MenuHelp (WM_MENUSELECT, wParam, lParam, hMainMenu, hInst, 
     hwndStatusBar, (UINT *) &popstr[iMenu]) ;
   */
  return 0;
}