fb1b6a762a
* NEW: Add an automake init flag to prevent warnings with recent versions of automake. [DEVELOPMENT ENVIRONMENT] * NEW: A Gambas project directory is now identify by a ".project" file that actually begins with the expected header. [GB.DESKTOP.X11] * NEW: X11Systray is a new static class that implements a system tray inside an already existing DrawingArea of your project. Beware, this it the initial experimental version. That class is based on the 'stalone' project source code. [GB.GTK] * BUG: Default tray icon is correctly visible now. [GB.GTK3] * BUG: Default tray icon is correctly visible now. [GB.QT4] * BUG: Tray icons are now scaled, like with GTK+. git-svn-id: svn://localhost/gambas/trunk@6299 867c0c6c-44f3-4631-809d-bfa615b0a4ec
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
/***************************************************************************
|
|
|
|
c_x11systray.h
|
|
|
|
(c) 2000-2013 Benoît Minisini <gambas@users.sourceforge.net>
|
|
|
|
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.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __C_X11SYSTRAY_H
|
|
#define __C_X11SYSTRAY_H
|
|
|
|
#include "main.h"
|
|
#include "systray/systray.h"
|
|
#include "systray/icons.h"
|
|
|
|
#ifndef __C_X11SYSTRAY_C
|
|
extern GB_DESC X11SystrayIconDesc[];
|
|
extern GB_DESC X11SystrayDesc[];
|
|
#endif
|
|
|
|
void SYSTRAY_raise_arrange(void);
|
|
|
|
#endif
|