tint2/src/tooltip/tooltip.h
Andreas.Fink85 99b045a323 *fix* merged tooltip to the new timer syntax
*todo* check what happens if no clock and no battery are on the panel



git-svn-id: http://tint2.googlecode.com/svn/trunk@268 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
2009-11-16 07:27:28 +00:00

53 lines
1.5 KiB
C

/**************************************************************************
*
* Copyright (C) 2009 Andreas.Fink (Andreas.Fink85@gmail.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* 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 TOOLTIP_H
#define TOOLTIP_H
#include <sys/time.h>
#include "task.h"
typedef struct {
Task* task;
Window window;
struct timespec show_timeout;
struct timespec hide_timeout;
Bool enabled;
Bool mapped;
int paddingx;
int paddingy;
PangoFontDescription* font_desc;
config_color font_color;
Color background_color;
Border border;
int show_timer_id;
int hide_timer_id;
} Tooltip;
extern Tooltip g_tooltip;
void init_tooltip();
void cleanup_tooltip();
void tooltip_trigger_show(Task* task, int x, int y);
void tooltip_show();
void tooltip_update();
void tooltip_trigger_hide();
void tooltip_hide();
#endif // TOOLTIP_H