File: tooltip.c

package info (click to toggle)
mtink 1.0.16-10
  • links: PTS
  • area: main
  • in suites: buster
  • size: 3,808 kB
  • sloc: ansic: 19,264; sh: 1,008; python: 626; xml: 444; makefile: 76
file content (627 lines) | stat: -rw-r--r-- 16,962 bytes parent folder | download | duplicates (8)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
/* file tooltip.c Version 0.2 

Implement tooltip for Motif 1.2, 2.0 and 2.1 and Xaw*

Author: Jean-Jacques Sarton jj.sarton@t-online.de
Date:   February 2002

Changes:
  0.2:  - new resources
        - tooltip widgets nor more destroyed and created again
   - removed main(), put this to mtiptoll.c
   - better handling of Menu (Motif)
----------------------------------------------------------------
This is a lean version which can be integrated in an existing
application.

The developer need only to add event handler with the function
xmAddTooltip() for each widget which is relevant or call after the
windows was build the function xmAddtooltipGlobal(). In this case
event handlers will be installed for each pushbutton and togglebuton.

Note that xmAddtooltipGlobal() is not available now for Xaw.

The last work is to fill the resource file with the wanted tooltip textes.
and a few values for the tooltip behaviour.

Widgets:
The tooltip widgets consist of the following widgets:
- shell:      tooltip_shell  (XmMenuShell)
- row_column  tooltip_rc     (XmRowColum)
- label       tooltip_label  (XmLabel)

Resources:
The resource for above widgets are applicable
exected the labelString resoource.

New resources:
tooltipPost     The delay in millisecond for displaying the tooltip
         after a widget was entered (value < 20 -> delay set
        to 20 ms (avod a few problems)
tooltipDuraction  The time for which the tooltip will be displayed in
         case the pointer is still abovce the widget
tooltipX     X offset relatif to left border of "parent" widget.
tooltipY     Y offset relatif to botom border of "parent" widget.

tooltip      The text which is to be displayed.
         This is a new resource and correspond to the labelString
         resource.

tooltipBackground background for the tooltip
tooltipForeground foreground for the tooltip
resource file example:

Refer to the included resource file Test.

Using within own projects:
Copy the file tooltip.c to your project source. If you use XAW*
define TIPTOOL_USE_XAW in order to generate the Xaw object file.

*/

/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
 
#include <stdio.h>
#include <stdlib.h>
#include <X11/Xlib.h>
#include <X11/Intrinsic.h>
#include <X11/Shell.h>
#include <Xm/XmAll.h>
#include <Xm/Xm.h>
#include <Xm/ToggleBG.h>
#include <X11/StringDefs.h>
#include <Xm/XmStrDefs.h>
#include "tooltip.h"

/* prototypes */
static void  showTooltip(Widget w, XtPointer client_data, XEvent *event);
static void  unmapTooltip(XtPointer closure, XtIntervalId *id);
static void  deleteTooltip(Widget w, XtPointer client_data, XEvent *event);
static void  postTooltip(XtPointer closure, XtIntervalId *id);

/* private variables */
static XtIntervalId postId;
static XtIntervalId durationId;
static XtAppContext app;
static int          init;
static long         postDelay;
static long         duration;
static Position     xOffset = 1;
static Position     yOffset = 1;
static int          enabled = 1;
static Widget       popup_shell;
static Widget       popup_label      = NULL;
static int          pixelInitialized = 0;
static char        *Lang             = NULL;

#define BG_INIT     1
#define FG_INIT     2
 
/*********************************************************************
 * Function: xmTooltipSetLang
 *
 * Set the language name (name of the top form)
 *
 * Input: char *lang
 *
 * Return: -
 *
 ********************************************************************/ 

void xmTooltipSetLang(char *lang)
{
   if ( lang )
      Lang = strdup(lang);
}

/*********************************************************************
 * Function: xmAddTooltip
 *
 * Add the tooltip event handler for the given widget
 *
 * Input: Widget w
 *
 * Return: -
 *
 ********************************************************************/
 
void xmAddTooltip(Widget w)
{
   XtAddEventHandler(w, EnterWindowMask, False,
                     (XtEventHandler) showTooltip, NULL);    
   XtAddEventHandler(w, LeaveWindowMask, False,
                     (XtEventHandler) deleteTooltip, NULL);    
}

/*********************************************************************
 * Function: xmSetPostDelay
 *
 * Set the delay for posting of tooltip. if the value is 0, no delay
 * will be taken in account. The time is in milli second
 *
 * Input: long delay
 *
 * Return: -
 *
 ********************************************************************/ 

void xmSetPostDelay(long delay)
{
   postDelay = delay;
}

/*********************************************************************
 * Function: xmSetDuration
 *
 * Set the delay for unposting of tooltip. if the value is 0, no delay
 * will be taken in account. The time is in milli second
 *
 * Input: long delay
 *
 * Return: -
 *
 ********************************************************************/ 

void xmSetDuration(long delay)
{
   duration = delay;
}

/*********************************************************************
 * Function: xmEnableTooltip
 *
 * Set the enable flag. If the value is 0 tooltips are disabled. 
 * Other values enable displayin of tooltips.
 *
 * Input: int enable 
 *
 * Return: -
 *
 ********************************************************************/ 

void xmEnableTooltip(int enable)
{
   enabled = enable;
}

/*********************************************************************
 * Function: xmSetXOffset
 *
 * Set the x offset where the tooltip will be displayed
 * 
 *
 * Input: int offset 
 *
 * Return: -
 *
 ********************************************************************/ 

void xmSetXOffset(int offset)
{
   xOffset = offset;
   if ( xOffset < 0 ) xOffset = 0;
}

/*********************************************************************
 * Function: xmSetYOffset
 *
 * Set the x offset where the tooltip will be displayed
 * 
 *
 * Input: int offset 
 *
 * Return: -
 *
 ********************************************************************/ 

void xmSetYOffset(int offset)
{
   yOffset = offset;
   if ( yOffset < 0 ) yOffset = 0;
}

/*********************************************************************
 * Function: xmAddtooltipGlobal
 *
 * Add the tooltip event handler for all widget bellow the the given
 * topwidget. 
 *
 * Input: Widget top
 *
 * Return: -
 *
 ********************************************************************/ 

void xmAddtooltipGlobal(Widget top)
{
   /* get a list of all widgets */
   WidgetList  children = NULL;
   int         numChildren = 0;
   int         i;
   
   if ( ! XtIsComposite(top) )
   {
      return;
   }

   XtVaGetValues(top,
                 XmNchildren, &children,
                 XmNnumChildren, &numChildren,
                 NULL);
   for (i=0; i < numChildren; i++ )
   {
      /* check for pushbutton and togglebutton */
      if ( XmIsPushButton(children[i])         ||
           XmIsToggleButton(children[i])
         )
      {
         xmAddTooltip(children[i]);
      }
      else
      {
         xmAddtooltipGlobal(children[i]);
      }
   }

   /* don't free children, this wiil cause a segment violation */

}

/*********************************************************************
 * Function: postTooltip
 *
 * Manage the tooltip if the postdelay timeout was encountoured
 *
 * Input: not relevant
 *
 * Return: -
 *
 ********************************************************************/ 

static void postTooltip(XtPointer closure, XtIntervalId *id)
{
   XtManageChild(popup_shell);
   XRaiseWindow(XtDisplay(popup_shell),XtWindow(popup_shell));

   if ( duration > 0 )
   {
      durationId = XtAppAddTimeOut(app, duration, unmapTooltip, NULL );
   }
   postId = 0;
}

/*********************************************************************
 * Function: unmapTooltip
 *
 * destroy the tooltip if the durcation timeout was encountoured
 *
 * Input: not relevant
 *
 * Return: -
 *
 ********************************************************************/ 

static void unmapTooltip(XtPointer closure, XtIntervalId *id)
{
   if ( popup_shell )
      XtUnmanageChild(popup_shell);
   if (postId)
      XtRemoveTimeOut(postId);
   if ( durationId )
      XtRemoveTimeOut(durationId);
   postId = durationId = 0;
}

/*********************************************************************
 * Function: showTooltip
 *
 * Build the tooltip and display it if the post delay is <= 0.
 * If the post delay is > 0 arme a timer which will manage the tooltip
 * later.
 *
 * Input: Widget w,
 *        XtPointer  client_data
 *        XEvent    *event
 *
 * Return: -
 *
 ********************************************************************/ 

static void showTooltip(Widget w, XtPointer client_data, XEvent *event)
{
   Widget    popup_rc;
   Position  x, y;
   Dimension h;
   Dimension ph, pw;
   XmString  xms;
   int       isMenu = False;
   char     *s;
   Widget    top    = w;
   Pixel     bg     = 0;
   Pixel     fg     = 0; 

   if(event->xany.type != EnterNotify)
      return;

   if ( ! enabled )
      return;

   if ( ! XtIsSensitive(w) )
       return;
   
   /* get the shell */
   while ( !XtIsShell(top) )
      top = XtParent(top);

   if ( ! init )
   {
      /* read the values for tooltip post delay and duration */

      if ((s = xmGetResource(top, "tooltipPost"))) 
      {
         postDelay = atoi(s);
      }

      if ((s = xmGetResource(top, "tooltipDuration"))) 
      {
         duration = atoi(s);
      }

      if ((s = xmGetResource(top, "tooltipX"))) 
      {
         xOffset = atoi(s);
         if ( xOffset < 0 ) xOffset = 0;
      }

      if ((s = xmGetResource(top, "tooltipY"))) 
      {
         yOffset = atoi(s);
         if ( yOffset < 0 ) yOffset = 0;
      }

      /* some application will replace all background and */
      /* foreground resources to a given values, so we    */
      /* have our own resource foir this                  */

      if ((s = xmGetResource(top, "tooltipBackground"))) 
      {
         XColor col, col2;
         Colormap cmap = DefaultColormap(XtDisplay(top),
                                         DefaultScreen(XtDisplay(top)));
         if ( XAllocNamedColor(XtDisplay(top),cmap,s,&col,&col2) )
         {
            bg = col.pixel;
            pixelInitialized = BG_INIT;
         }
      }

      if ((s = xmGetResource(top, "tooltipForeground"))) 
      {
         XColor col, col2;
         Colormap cmap = DefaultColormap(XtDisplay(top),
                                         DefaultScreen(XtDisplay(top)));
         if ( XAllocNamedColor(XtDisplay(top),cmap,s,&col,&col2) )
         {
            fg = col.pixel;
            pixelInitialized |= FG_INIT;
         }
      }

      /* and get the application context, for timers */
      app = XtDisplayToApplicationContext(XtDisplay(w));

      popup_shell = XtVaCreatePopupShell("tooltip_shell",
                                         topLevelShellWidgetClass,
                                         top,
                                         XmNoverrideRedirect,
                                         True,
                                         XmNallowShellResize,
                                         True,
                                         XmNmappedWhenManaged, False,
                                         XmNwidth,             1,
                                         XmNheight,            1,
                                         XmNborderWidth,       0,
                                         NULL);
                  
      XtManageChild(popup_shell);

      XMoveWindow(XtDisplay(popup_shell), XtWindow(popup_shell), x, y);

      /* the container, The class must be according to the toolkit */
      popup_rc = XtVaCreateWidget(Lang?Lang:"tooltip_form",
                                  xmFormWidgetClass,
                                  popup_shell,
                                  NULL);
      XtManageChild(popup_rc);

      /* the label, class according to toolkit */
      popup_label = XtVaCreateWidget("tooltip_label",
                                      xmLabelWidgetClass,
                                      popup_rc,
                                      NULL);

      if ( pixelInitialized & BG_INIT )
      {
         XtVaSetValues(popup_label,
                       XmNbackground, bg,
                       XmNbackgroundPixmap, XmUNSPECIFIED_PIXMAP,
                       NULL);
      }
      if ( pixelInitialized & FG_INIT )
      {
         XtVaSetValues(popup_label, XmNforeground, fg, NULL);
      }
      XtManageChild(popup_label);

      XtUnmanageChild(popup_shell);
      XtVaSetValues(popup_shell, XmNmappedWhenManaged, True,NULL);
      init++;
   }

   /* get the resource */
   if ( (s = xmGetResource(w, "tooltip")) )
   {
      /* This is wrong, if lesstif 2.0 is used */
      /* use always the old calls              */
      xms = XmStringCreateLtoR( s, XmFONTLIST_DEFAULT_TAG);
      XtVaSetValues(popup_label,
                    XmNlabelString, xms,
                    NULL);
   }
   else
   {
      return;
   }

   /* get position and dimensions */
   
   XtVaGetValues(w, XmNheight, &h, NULL);
   XtTranslateCoords(w, 0, 0, &x, &y);

   XtVaGetValues(popup_shell, XmNheight, &ph, XmNwidth, &pw, NULL);

   /* calculate the x and y position fot popup */

   if ( XtParent(w) )
   {
      isMenu = XmIsMenuShell(XtParent(w));
      if ( isMenu == False && XtParent(XtParent(w)) )
      {
         isMenu = XmIsMenuShell(XtParent(XtParent(w)));
      }
   }

   if ( isMenu )
   {
       Dimension wi;
       XtVaGetValues(XtParent(w),
                     XmNwidth, &wi,
                     NULL);
       if ( (x + pw + wi ) > WidthOfScreen(XtScreen(w)) )
          x -= pw;
       else
          x += wi;
   }
   else
   {
      if ( (h + y + ph + yOffset ) < HeightOfScreen(XtScreen(w)) )
      {
         y = h + y + yOffset;
      }
      else
      {
         y = y - ph - yOffset;
      } 

      if ( ( x + pw + xOffset ) > WidthOfScreen(XtScreen(w)) )
      {
         x = WidthOfScreen(XtScreen(w)) - pw;
      }
      else
      {
         x += xOffset;
      }
   }

   XtVaSetValues(popup_shell, XmNx, x, XmNy, y,NULL);
   postId = XtAppAddTimeOut(app, postDelay, postTooltip, NULL );
   if ( xms )
      XmStringFree(xms);
}

/*********************************************************************
 * Function: deleteTooltip
 *
 * unmap the tooltip
 *
 * Input: Widget w,
 *        XtPointer  client_data
 *        XEvent    *event
 *
 * Return: -
 *
 ********************************************************************/ 

static void deleteTooltip(Widget w, XtPointer client_data, XEvent
         *event)
{
   XLeaveWindowEvent *cevent = (XLeaveWindowEvent *) event;
   if(cevent->type != LeaveNotify)
      return;

   if ( popup_shell )
      XtUnmanageChild(popup_shell);
   if ( durationId )
      XtRemoveTimeOut(durationId);
   durationId = 0;
   if ( postId )
      XtRemoveTimeOut(postId);
   postId = 0;
}

/*********************************************************************
 * Function: xmGetResource
 *
 * read the resource
 *
 * Input: Widget  w
 *        char   *resource
 *
 * Return: char *resource
 *
 ********************************************************************/
 
char *xmGetResource(Widget w, char *resource)
{
    XrmDatabase   database;
    char        *type_return;
    XrmValue     value_return;
    Widget       top = w;
    char        *tmp;
    char        *first;
    char        *last = strdup(resource);
    
    /* build the full resource name */
    while( !XtIsShell(top) )
    {
       tmp = XtName(top);
       first = (char*)calloc(strlen(tmp)+strlen(last)+2,1);
       sprintf(first, "%s.%s",tmp,last);
       free(last);
       last = first;
       top = XtParent(top);
    }

    /* get the class name */
    XtGetApplicationNameAndClass(XtDisplay(w), &type_return, &tmp);

    /* and complete the name */
    first = (char*)calloc(strlen(tmp)+strlen(last)+2,1);
    sprintf(first, "%s.%s",tmp,last);
    free(last);

    /* get Database */
    database = XtDatabase(XtDisplay(w));

    /* get value from the resource database,the class ist not */
    /* is not important here                                  */
    XrmGetResource(database, first,
             "String", &type_return, &value_return);

    free(first);
    return value_return.addr;
}