2010-08-28 10:14:32 +00:00
|
|
|
/* -*- mode: c++; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
* vim: ts=4 sw=4 noet ai cindent syntax=cpp
|
2009-07-28 21:44:22 +00:00
|
|
|
*
|
|
|
|
* Conky, a system monitor, based on torsmo
|
2009-05-08 20:42:34 +00:00
|
|
|
*
|
|
|
|
* Please see COPYING for details
|
|
|
|
*
|
2010-01-01 23:46:17 +00:00
|
|
|
* Copyright (c) 2005-2010 Brenden Matthews, et. al.
|
2009-05-08 20:42:34 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CONKY_IMBLI2_H_
|
|
|
|
#define _CONKY_IMBLI2_H_
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
void cimlib_add_image(const char *name);
|
|
|
|
void cimlib_set_cache_size(long size);
|
2009-06-03 19:24:53 +00:00
|
|
|
void cimlib_set_cache_flush_interval(long interval);
|
2009-05-18 05:11:22 +00:00
|
|
|
void cimlib_render(int x, int y, int width, int height);
|
2009-05-08 20:42:34 +00:00
|
|
|
void cimlib_cleanup(void);
|
|
|
|
|
2009-11-28 21:45:01 +00:00
|
|
|
void print_image_callback(struct text_object *, char *, int);
|
|
|
|
|
2010-08-29 12:31:22 +00:00
|
|
|
class imlib_cache_size_setting: public conky::range_config_setting<unsigned long> {
|
|
|
|
typedef conky::range_config_setting<unsigned long> Base;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void lua_setter(lua::state &l, bool init);
|
|
|
|
virtual void cleanup(lua::state &l);
|
|
|
|
|
|
|
|
public:
|
|
|
|
imlib_cache_size_setting()
|
|
|
|
: Base("imlib_cache_size", 0,
|
|
|
|
std::numeric_limits<unsigned long>::max(), 4096*1024, true)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2009-05-08 20:42:34 +00:00
|
|
|
#endif /* _CONKY_IMBLI2_H_ */
|