~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/clients/qmon/qmon_queue.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _QMON_QUEUE_H_
 
2
#define _QMON_QUEUE_H_
 
3
/*___INFO__MARK_BEGIN__*/
 
4
/*************************************************************************
 
5
 * 
 
6
 *  The Contents of this file are made available subject to the terms of
 
7
 *  the Sun Industry Standards Source License Version 1.2
 
8
 * 
 
9
 *  Sun Microsystems Inc., March, 2001
 
10
 * 
 
11
 * 
 
12
 *  Sun Industry Standards Source License Version 1.2
 
13
 *  =================================================
 
14
 *  The contents of this file are subject to the Sun Industry Standards
 
15
 *  Source License Version 1.2 (the "License"); You may not use this file
 
16
 *  except in compliance with the License. You may obtain a copy of the
 
17
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
18
 * 
 
19
 *  Software provided under this License is provided on an "AS IS" basis,
 
20
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
21
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
22
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
23
 *  See the License for the specific provisions governing your rights and
 
24
 *  obligations concerning the Software.
 
25
 * 
 
26
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
27
 * 
 
28
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
29
 * 
 
30
 *   All Rights Reserved.
 
31
 * 
 
32
 ************************************************************************/
 
33
/*___INFO__MARK_END__*/
 
34
 
 
35
#include "qmon_proto.h"
 
36
#include "qmon_cull.h"
 
37
 
 
38
/*-------------------------------------------------------------------------*/
 
39
/* Sizes in Pixels, these values should be resources */
 
40
#define QUEUE_GRID_XOFFSET  5
 
41
#define QUEUE_GRID_YOFFSET  5
 
42
 
 
43
#define QUEUE_GRID_WIDTH  80
 
44
#define QUEUE_GRID_HEIGHT 80
 
45
 
 
46
#define QUEUE_MAX_HORIZ   7    /* So we have QUEUE_MAX_HORIZ * QUEUE_MAX_VERT */
 
47
#define QUEUE_MAX_VERT    394  /*  PB's (queues)                              */     
 
48
 
 
49
#if 0
 
50
#define QUEUE_DRAWINGAREA_HEIGHT QUEUE_MAX_VERT * \
 
51
                                 QUEUE_GRID_HEIGHT + \
 
52
                                 2 * QUEUE_GRID_YOFFSET
 
53
#define QUEUE_DRAWINGAREA_WIDTH  QUEUE_MAX_HORIZ * \
 
54
                                 QUEUE_GRID_WIDTH + \
 
55
                                 2 * QUEUE_GRID_XOFFSET
 
56
#endif
 
57
 
 
58
#define QUEUE_BUTTON_WIDTH       70 
 
59
#define QUEUE_BUTTON_HEIGHT      70
 
60
 
 
61
 
 
62
/*-------------------------------------------------------------------------*/
 
63
#define QUEUE_SELECT_COLOR    50
 
64
 
 
65
typedef struct _tQueueIcon {
 
66
   long quark;      /* unique quark */
 
67
   int type;            /* QMON_SIMPLE, QMON_VM, QMON_USERDEFINED */
 
68
   Boolean selected;    /* is the widget selected */
 
69
   Boolean deleted;     /* the widget is marked deleted */
 
70
   int grid_x;          /* grid position -> position in button grid */
 
71
   int grid_y;
 
72
   Pixmap pixmap;       /* pixmap to show */
 
73
   int x,y;             /* pixmap position */
 
74
   unsigned int   icon_width, 
 
75
                  icon_height; /* pixmap width, height  */
 
76
   String arch;         /* architecture of queue */
 
77
   lListElem *qp;       /* queue list ptr */       
 
78
} tQueueIcon;
 
79
 
 
80
 
 
81
typedef struct _tQueueButton {
 
82
   unsigned long run;   /* every redisplay increments run   */
 
83
   Widget   id;         /* button id                        */
 
84
   Widget   bgid;       /* drawing area parent to show select  */
 
85
   tQueueIcon *qI;      /* connected queue icon, NULL if the   */
 
86
                        /* button is not mapped                */
 
87
   Boolean  selected;
 
88
   int      state;      
 
89
} tQueueButton;
 
90
 
 
91
void qmonQueuePopup(Widget w, XtPointer cld, XtPointer cad);
 
92
void updateQueueList(void);
 
93
void updateQueueListCB(Widget w, XtPointer cld, XtPointer cad);
 
94
 
 
95
 
 
96
#endif /* _QMON_QUEUE_H_ */
 
97