File: cfaketrayicon.c

package info (click to toggle)
gambas3 3.20.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 77,208 kB
  • sloc: ansic: 197,232; cpp: 124,273; sh: 18,999; javascript: 7,761; sql: 5,399; makefile: 2,358; perl: 1,397; xml: 490; python: 335
file content (83 lines) | stat: -rw-r--r-- 2,426 bytes parent folder | download | duplicates (3)
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
/***************************************************************************

  cfaketrayicon.cpp

  (c) 2000-2017 BenoƮt Minisini <benoit.minisini@gambas-basic.org>

  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, 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., 51 Franklin Street, Fifth Floor, Boston,
  MA 02110-1301, USA.

***************************************************************************/

#define __CFAKETRAYICON_CPP

#include "gambas.h"
#include "main.h"

#include "cfaketrayicon.h"


GB_DESC FakeTrayIconsDesc[] =
{
	GB_DECLARE_STATIC("TrayIcons"),

	GB_STATIC_METHOD("_next", "TrayIcon", NULL, NULL),
	GB_STATIC_METHOD("_get", "TrayIcon", NULL, "(Index)i"),
	GB_STATIC_PROPERTY_READ("Count", "i", NULL),
	GB_STATIC_METHOD("DeleteAll", NULL, NULL, NULL),

	GB_END_DECLARE
};


GB_DESC FakeTrayIconDesc[] =
{
	GB_DECLARE("TrayIcon", 0),

	//GB_STATIC_METHOD("_exit", NULL, NULL, NULL),

	GB_CONSTANT("Horizontal", "i", 0),
	GB_CONSTANT("Vertical", "i", 1),

	GB_METHOD("_new", NULL, NULL, NULL),
	GB_METHOD("_free", NULL, NULL, NULL),

	GB_METHOD("Show", NULL, NULL, NULL),
	GB_METHOD("Hide", NULL, NULL, NULL),
	GB_METHOD("Delete", NULL, NULL, NULL),

	GB_PROPERTY("Picture", "Picture", NULL),
	GB_PROPERTY("Icon", "Picture", NULL),
	GB_PROPERTY("Visible", "b", NULL),

	GB_PROPERTY("Text", "s", NULL),
	GB_PROPERTY("PopupMenu", "s", NULL),
	GB_PROPERTY("Tooltip", "s", NULL),
	GB_PROPERTY("Tag", "v", NULL),
	
	GB_EVENT("Click", NULL, NULL, NULL),
	GB_EVENT("MiddleClick", NULL, NULL, NULL),
	GB_EVENT("Scroll", NULL, "(Delta)f(Orientation)i", NULL),

	GB_CONSTANT("_IsControl", "b", TRUE),
	GB_CONSTANT("_Family", "s", "*"),
	GB_CONSTANT("_IsVirtual", "b", TRUE),
	GB_CONSTANT("_Group", "s", "Special"),
	GB_CONSTANT("_DefaultEvent", "s", "Click"),
	GB_CONSTANT("_Properties", "s", "Visible=False,Tag,Tooltip,Picture{Picture:NoCache},PopupMenu{Menu}"),

	GB_END_DECLARE
};