2007-11-17 20:14:51 +03:00
|
|
|
#ifndef CONSOLE_H
|
|
|
|
#define CONSOLE_H
|
|
|
|
|
2012-11-28 15:06:30 +04:00
|
|
|
#include "ui/qemu-pixman.h"
|
2013-04-17 11:45:10 +04:00
|
|
|
#include "qom/object.h"
|
2012-12-17 21:19:43 +04:00
|
|
|
#include "qapi/qmp/qdict.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/notify.h"
|
2012-12-17 21:19:49 +04:00
|
|
|
#include "monitor/monitor.h"
|
2012-08-31 06:56:25 +04:00
|
|
|
#include "qapi-types.h"
|
2012-12-17 21:19:43 +04:00
|
|
|
#include "qapi/error.h"
|
2007-11-17 20:14:51 +03:00
|
|
|
|
|
|
|
/* keyboard/mouse support */
|
|
|
|
|
|
|
|
#define MOUSE_EVENT_LBUTTON 0x01
|
|
|
|
#define MOUSE_EVENT_RBUTTON 0x02
|
|
|
|
#define MOUSE_EVENT_MBUTTON 0x04
|
|
|
|
|
2010-02-26 19:17:36 +03:00
|
|
|
/* identical to the ps/2 keyboard bits */
|
|
|
|
#define QEMU_SCROLL_LOCK_LED (1 << 0)
|
|
|
|
#define QEMU_NUM_LOCK_LED (1 << 1)
|
|
|
|
#define QEMU_CAPS_LOCK_LED (1 << 2)
|
|
|
|
|
2008-08-22 00:12:05 +04:00
|
|
|
/* in ms */
|
2013-03-14 14:56:16 +04:00
|
|
|
#define GUI_REFRESH_INTERVAL_DEFAULT 30
|
|
|
|
#define GUI_REFRESH_INTERVAL_IDLE 3000
|
2008-08-22 00:12:05 +04:00
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
typedef void QEMUPutKBDEvent(void *opaque, int keycode);
|
2010-02-26 19:17:36 +03:00
|
|
|
typedef void QEMUPutLEDEvent(void *opaque, int ledstate);
|
2007-11-17 20:14:51 +03:00
|
|
|
typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
|
|
|
|
|
2013-04-24 14:08:37 +04:00
|
|
|
typedef struct QEMUPutMouseEntry QEMUPutMouseEntry;
|
2013-04-24 14:08:38 +04:00
|
|
|
typedef struct QEMUPutKbdEntry QEMUPutKbdEntry;
|
2013-04-24 14:08:37 +04:00
|
|
|
typedef struct QEMUPutLEDEntry QEMUPutLEDEntry;
|
2010-02-26 19:17:36 +03:00
|
|
|
|
2013-04-24 14:08:38 +04:00
|
|
|
QEMUPutKbdEntry *qemu_add_kbd_event_handler(QEMUPutKBDEvent *func,
|
|
|
|
void *opaque);
|
|
|
|
void qemu_remove_kbd_event_handler(QEMUPutKbdEntry *entry);
|
2007-11-17 20:14:51 +03:00
|
|
|
QEMUPutMouseEntry *qemu_add_mouse_event_handler(QEMUPutMouseEvent *func,
|
|
|
|
void *opaque, int absolute,
|
|
|
|
const char *name);
|
|
|
|
void qemu_remove_mouse_event_handler(QEMUPutMouseEntry *entry);
|
2010-03-10 05:52:22 +03:00
|
|
|
void qemu_activate_mouse_event_handler(QEMUPutMouseEntry *entry);
|
|
|
|
|
2010-02-26 19:17:36 +03:00
|
|
|
QEMUPutLEDEntry *qemu_add_led_event_handler(QEMUPutLEDEvent *func, void *opaque);
|
|
|
|
void qemu_remove_led_event_handler(QEMUPutLEDEntry *entry);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
|
|
|
void kbd_put_keycode(int keycode);
|
2010-02-26 19:17:36 +03:00
|
|
|
void kbd_put_ledstate(int ledstate);
|
2007-11-17 20:14:51 +03:00
|
|
|
void kbd_mouse_event(int dx, int dy, int dz, int buttons_state);
|
2010-03-09 23:26:40 +03:00
|
|
|
|
|
|
|
/* Does the current mouse generate absolute events */
|
2007-11-17 20:14:51 +03:00
|
|
|
int kbd_mouse_is_absolute(void);
|
2010-03-09 22:25:00 +03:00
|
|
|
void qemu_add_mouse_mode_change_notifier(Notifier *notify);
|
|
|
|
void qemu_remove_mouse_mode_change_notifier(Notifier *notify);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2010-03-09 23:26:40 +03:00
|
|
|
/* Of all the mice, is there one that generates absolute events */
|
|
|
|
int kbd_mouse_has_absolute(void);
|
|
|
|
|
2009-05-10 04:44:56 +04:00
|
|
|
struct MouseTransformInfo {
|
2008-04-15 01:28:11 +04:00
|
|
|
/* Touchscreen resolution */
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
/* Calibration values as used/generated by tslib */
|
|
|
|
int a[7];
|
|
|
|
};
|
|
|
|
|
2009-08-28 22:27:13 +04:00
|
|
|
void do_mouse_set(Monitor *mon, const QDict *qdict);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
|
|
|
/* keysym is a unicode code except for special keys (see QEMU_KEY_xxx
|
|
|
|
constants) */
|
|
|
|
#define QEMU_KEY_ESC1(c) ((c) | 0xe100)
|
|
|
|
#define QEMU_KEY_BACKSPACE 0x007f
|
|
|
|
#define QEMU_KEY_UP QEMU_KEY_ESC1('A')
|
|
|
|
#define QEMU_KEY_DOWN QEMU_KEY_ESC1('B')
|
|
|
|
#define QEMU_KEY_RIGHT QEMU_KEY_ESC1('C')
|
|
|
|
#define QEMU_KEY_LEFT QEMU_KEY_ESC1('D')
|
|
|
|
#define QEMU_KEY_HOME QEMU_KEY_ESC1(1)
|
|
|
|
#define QEMU_KEY_END QEMU_KEY_ESC1(4)
|
|
|
|
#define QEMU_KEY_PAGEUP QEMU_KEY_ESC1(5)
|
|
|
|
#define QEMU_KEY_PAGEDOWN QEMU_KEY_ESC1(6)
|
|
|
|
#define QEMU_KEY_DELETE QEMU_KEY_ESC1(3)
|
|
|
|
|
|
|
|
#define QEMU_KEY_CTRL_UP 0xe400
|
|
|
|
#define QEMU_KEY_CTRL_DOWN 0xe401
|
|
|
|
#define QEMU_KEY_CTRL_LEFT 0xe402
|
|
|
|
#define QEMU_KEY_CTRL_RIGHT 0xe403
|
|
|
|
#define QEMU_KEY_CTRL_HOME 0xe404
|
|
|
|
#define QEMU_KEY_CTRL_END 0xe405
|
|
|
|
#define QEMU_KEY_CTRL_PAGEUP 0xe406
|
|
|
|
#define QEMU_KEY_CTRL_PAGEDOWN 0xe407
|
|
|
|
|
|
|
|
void kbd_put_keysym(int keysym);
|
|
|
|
|
|
|
|
/* consoles */
|
|
|
|
|
2013-04-17 11:45:10 +04:00
|
|
|
#define TYPE_QEMU_CONSOLE "qemu-console"
|
|
|
|
#define QEMU_CONSOLE(obj) \
|
|
|
|
OBJECT_CHECK(QemuConsole, (obj), TYPE_QEMU_CONSOLE)
|
|
|
|
#define QEMU_CONSOLE_GET_CLASS(obj) \
|
|
|
|
OBJECT_GET_CLASS(QemuConsoleClass, (obj), TYPE_QEMU_CONSOLE)
|
|
|
|
#define QEMU_CONSOLE_CLASS(klass) \
|
|
|
|
OBJECT_CLASS_CHECK(QemuConsoleClass, (klass), TYPE_QEMU_CONSOLE)
|
|
|
|
|
|
|
|
typedef struct QemuConsoleClass QemuConsoleClass;
|
|
|
|
|
|
|
|
struct QemuConsoleClass {
|
|
|
|
ObjectClass parent_class;
|
|
|
|
};
|
|
|
|
|
2009-01-16 01:14:11 +03:00
|
|
|
#define QEMU_BIG_ENDIAN_FLAG 0x01
|
|
|
|
#define QEMU_ALLOCATED_FLAG 0x02
|
|
|
|
|
|
|
|
struct PixelFormat {
|
|
|
|
uint8_t bits_per_pixel;
|
|
|
|
uint8_t bytes_per_pixel;
|
|
|
|
uint8_t depth; /* color depth in bits */
|
|
|
|
uint32_t rmask, gmask, bmask, amask;
|
|
|
|
uint8_t rshift, gshift, bshift, ashift;
|
|
|
|
uint8_t rmax, gmax, bmax, amax;
|
2009-01-26 18:37:30 +03:00
|
|
|
uint8_t rbits, gbits, bbits, abits;
|
2009-01-16 01:14:11 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct DisplaySurface {
|
2012-09-26 17:20:05 +04:00
|
|
|
pixman_format_code_t format;
|
|
|
|
pixman_image_t *image;
|
2009-01-16 01:14:11 +03:00
|
|
|
uint8_t flags;
|
|
|
|
|
|
|
|
struct PixelFormat pf;
|
|
|
|
};
|
|
|
|
|
2010-05-21 13:54:32 +04:00
|
|
|
/* cursor data format is 32bit RGBA */
|
|
|
|
typedef struct QEMUCursor {
|
|
|
|
int width, height;
|
|
|
|
int hot_x, hot_y;
|
|
|
|
int refcount;
|
|
|
|
uint32_t data[];
|
|
|
|
} QEMUCursor;
|
|
|
|
|
|
|
|
QEMUCursor *cursor_alloc(int width, int height);
|
|
|
|
void cursor_get(QEMUCursor *c);
|
|
|
|
void cursor_put(QEMUCursor *c);
|
|
|
|
QEMUCursor *cursor_builtin_hidden(void);
|
|
|
|
QEMUCursor *cursor_builtin_left_ptr(void);
|
|
|
|
void cursor_print_ascii_art(QEMUCursor *c, const char *prefix);
|
|
|
|
int cursor_get_mono_bpl(QEMUCursor *c);
|
|
|
|
void cursor_set_mono(QEMUCursor *c,
|
|
|
|
uint32_t foreground, uint32_t background, uint8_t *image,
|
|
|
|
int transparent, uint8_t *mask);
|
|
|
|
void cursor_get_mono_image(QEMUCursor *c, int foreground, uint8_t *mask);
|
|
|
|
void cursor_get_mono_mask(QEMUCursor *c, int transparent, uint8_t *mask);
|
|
|
|
|
2012-11-13 17:51:41 +04:00
|
|
|
typedef struct DisplayChangeListenerOps {
|
|
|
|
const char *dpy_name;
|
|
|
|
|
2013-03-01 16:03:04 +04:00
|
|
|
void (*dpy_refresh)(DisplayChangeListener *dcl);
|
2012-11-13 17:51:41 +04:00
|
|
|
|
|
|
|
void (*dpy_gfx_update)(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int w, int h);
|
2013-02-28 18:03:04 +04:00
|
|
|
void (*dpy_gfx_switch)(DisplayChangeListener *dcl,
|
|
|
|
struct DisplaySurface *new_surface);
|
2012-11-13 17:51:41 +04:00
|
|
|
void (*dpy_gfx_copy)(DisplayChangeListener *dcl,
|
2013-03-01 16:03:04 +04:00
|
|
|
int src_x, int src_y,
|
2012-09-28 17:02:08 +04:00
|
|
|
int dst_x, int dst_y, int w, int h);
|
|
|
|
|
2012-11-13 17:51:41 +04:00
|
|
|
void (*dpy_text_cursor)(DisplayChangeListener *dcl,
|
|
|
|
int x, int y);
|
|
|
|
void (*dpy_text_resize)(DisplayChangeListener *dcl,
|
|
|
|
int w, int h);
|
|
|
|
void (*dpy_text_update)(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int w, int h);
|
|
|
|
|
|
|
|
void (*dpy_mouse_set)(DisplayChangeListener *dcl,
|
|
|
|
int x, int y, int on);
|
|
|
|
void (*dpy_cursor_define)(DisplayChangeListener *dcl,
|
|
|
|
QEMUCursor *cursor);
|
|
|
|
} DisplayChangeListenerOps;
|
2009-01-16 01:14:11 +03:00
|
|
|
|
2012-11-13 17:51:41 +04:00
|
|
|
struct DisplayChangeListener {
|
2013-03-14 14:56:16 +04:00
|
|
|
uint64_t update_interval;
|
2012-11-13 17:51:41 +04:00
|
|
|
const DisplayChangeListenerOps *ops;
|
|
|
|
DisplayState *ds;
|
2013-03-15 18:45:54 +04:00
|
|
|
QemuConsole *con;
|
2012-09-12 09:56:45 +04:00
|
|
|
|
2010-06-04 13:46:35 +04:00
|
|
|
QLIST_ENTRY(DisplayChangeListener) next;
|
2009-01-16 01:14:11 +03:00
|
|
|
};
|
|
|
|
|
2013-03-07 20:08:29 +04:00
|
|
|
DisplayState *init_displaystate(void);
|
2009-01-16 01:14:11 +03:00
|
|
|
DisplaySurface* qemu_create_displaysurface_from(int width, int height, int bpp,
|
2013-02-20 12:37:12 +04:00
|
|
|
int linesize, uint8_t *data,
|
|
|
|
bool byteswap);
|
2009-01-23 22:56:19 +03:00
|
|
|
PixelFormat qemu_different_endianness_pixelformat(int bpp);
|
|
|
|
PixelFormat qemu_default_pixelformat(int bpp);
|
2009-01-16 01:14:11 +03:00
|
|
|
|
2013-02-28 13:48:02 +04:00
|
|
|
DisplaySurface *qemu_create_displaysurface(int width, int height);
|
|
|
|
void qemu_free_displaysurface(DisplaySurface *surface);
|
2009-03-13 18:02:13 +03:00
|
|
|
|
|
|
|
static inline int is_surface_bgr(DisplaySurface *surface)
|
|
|
|
{
|
|
|
|
if (surface->pf.bits_per_pixel == 32 && surface->pf.rshift == 0)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-16 01:14:11 +03:00
|
|
|
static inline int is_buffer_shared(DisplaySurface *surface)
|
|
|
|
{
|
2012-09-26 09:46:20 +04:00
|
|
|
return !(surface->flags & QEMU_ALLOCATED_FLAG);
|
2009-01-16 01:14:11 +03:00
|
|
|
}
|
|
|
|
|
2013-04-23 17:44:31 +04:00
|
|
|
void register_displaychangelistener(DisplayChangeListener *dcl);
|
2013-03-14 14:56:16 +04:00
|
|
|
void update_displaychangelistener(DisplayChangeListener *dcl,
|
|
|
|
uint64_t interval);
|
2012-11-13 17:51:41 +04:00
|
|
|
void unregister_displaychangelistener(DisplayChangeListener *dcl);
|
|
|
|
|
2013-03-05 18:24:14 +04:00
|
|
|
void dpy_gfx_update(QemuConsole *con, int x, int y, int w, int h);
|
|
|
|
void dpy_gfx_replace_surface(QemuConsole *con,
|
2013-02-28 13:48:02 +04:00
|
|
|
DisplaySurface *surface);
|
2013-03-05 18:24:14 +04:00
|
|
|
void dpy_gfx_copy(QemuConsole *con, int src_x, int src_y,
|
2012-11-13 17:51:41 +04:00
|
|
|
int dst_x, int dst_y, int w, int h);
|
2013-03-05 18:24:14 +04:00
|
|
|
void dpy_text_cursor(QemuConsole *con, int x, int y);
|
|
|
|
void dpy_text_update(QemuConsole *con, int x, int y, int w, int h);
|
|
|
|
void dpy_text_resize(QemuConsole *con, int w, int h);
|
|
|
|
void dpy_mouse_set(QemuConsole *con, int x, int y, int on);
|
|
|
|
void dpy_cursor_define(QemuConsole *con, QEMUCursor *cursor);
|
|
|
|
bool dpy_cursor_define_supported(QemuConsole *con);
|
2012-09-12 09:56:45 +04:00
|
|
|
|
2013-02-28 18:24:14 +04:00
|
|
|
static inline int surface_stride(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
return pixman_image_get_stride(s->image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *surface_data(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
return pixman_image_get_data(s->image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int surface_width(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
return pixman_image_get_width(s->image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int surface_height(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
return pixman_image_get_height(s->image);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int surface_bits_per_pixel(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
int bits = PIXMAN_FORMAT_BPP(s->format);
|
|
|
|
return bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int surface_bytes_per_pixel(DisplaySurface *s)
|
|
|
|
{
|
|
|
|
int bits = PIXMAN_FORMAT_BPP(s->format);
|
|
|
|
return (bits + 7) / 8;
|
|
|
|
}
|
|
|
|
|
2011-09-07 23:44:36 +04:00
|
|
|
#ifdef CONFIG_CURSES
|
|
|
|
#include <curses.h>
|
|
|
|
typedef chtype console_ch_t;
|
|
|
|
#else
|
2009-10-02 01:12:16 +04:00
|
|
|
typedef unsigned long console_ch_t;
|
2011-09-07 23:44:36 +04:00
|
|
|
#endif
|
2009-10-02 01:12:16 +04:00
|
|
|
static inline void console_write_ch(console_ch_t *dest, uint32_t ch)
|
2008-02-10 19:33:14 +03:00
|
|
|
{
|
2010-05-21 16:05:55 +04:00
|
|
|
if (!(ch & 0xff))
|
|
|
|
ch |= ' ';
|
2011-01-04 23:58:24 +03:00
|
|
|
*dest = ch;
|
2008-02-10 19:33:14 +03:00
|
|
|
}
|
|
|
|
|
2013-03-13 17:04:18 +04:00
|
|
|
typedef struct GraphicHwOps {
|
|
|
|
void (*invalidate)(void *opaque);
|
|
|
|
void (*gfx_update)(void *opaque);
|
|
|
|
void (*text_update)(void *opaque, console_ch_t *text);
|
2013-03-19 18:01:02 +04:00
|
|
|
void (*update_interval)(void *opaque, uint64_t interval);
|
2013-03-13 17:04:18 +04:00
|
|
|
} GraphicHwOps;
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2013-04-17 12:21:27 +04:00
|
|
|
QemuConsole *graphic_console_init(DeviceState *dev,
|
|
|
|
const GraphicHwOps *ops,
|
2013-03-05 18:24:14 +04:00
|
|
|
void *opaque);
|
2009-01-16 22:04:14 +03:00
|
|
|
|
2013-03-12 16:44:38 +04:00
|
|
|
void graphic_hw_update(QemuConsole *con);
|
|
|
|
void graphic_hw_invalidate(QemuConsole *con);
|
|
|
|
void graphic_hw_text_update(QemuConsole *con, console_ch_t *chardata);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2013-03-15 18:45:54 +04:00
|
|
|
QemuConsole *qemu_console_lookup_by_index(unsigned int index);
|
2013-04-18 09:30:40 +04:00
|
|
|
QemuConsole *qemu_console_lookup_by_device(DeviceState *dev);
|
2013-03-14 17:27:08 +04:00
|
|
|
bool qemu_console_is_visible(QemuConsole *con);
|
|
|
|
bool qemu_console_is_graphic(QemuConsole *con);
|
|
|
|
bool qemu_console_is_fixedsize(QemuConsole *con);
|
|
|
|
|
2009-01-16 23:23:27 +03:00
|
|
|
void text_consoles_set_display(DisplayState *ds);
|
2007-11-17 20:14:51 +03:00
|
|
|
void console_select(unsigned int index);
|
|
|
|
void console_color_init(DisplayState *ds);
|
2013-03-05 18:24:14 +04:00
|
|
|
void qemu_console_resize(QemuConsole *con, int width, int height);
|
|
|
|
void qemu_console_copy(QemuConsole *con, int src_x, int src_y,
|
2009-01-16 22:04:14 +03:00
|
|
|
int dst_x, int dst_y, int w, int h);
|
2013-03-05 18:24:14 +04:00
|
|
|
DisplaySurface *qemu_console_surface(QemuConsole *con);
|
|
|
|
DisplayState *qemu_console_displaystate(QemuConsole *console);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2013-02-25 18:52:32 +04:00
|
|
|
typedef CharDriverState *(VcHandler)(ChardevVC *vc);
|
2013-02-20 17:43:19 +04:00
|
|
|
|
2013-02-25 18:52:32 +04:00
|
|
|
CharDriverState *vc_init(ChardevVC *vc);
|
2013-02-20 17:43:19 +04:00
|
|
|
void register_vc_handler(VcHandler *handler);
|
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
/* sdl.c */
|
|
|
|
void sdl_display_init(DisplayState *ds, int full_screen, int no_frame);
|
|
|
|
|
|
|
|
/* cocoa.m */
|
|
|
|
void cocoa_display_init(DisplayState *ds, int full_screen);
|
|
|
|
|
|
|
|
/* vnc.c */
|
|
|
|
void vnc_display_init(DisplayState *ds);
|
2012-10-18 11:01:01 +04:00
|
|
|
void vnc_display_open(DisplayState *ds, const char *display, Error **errp);
|
2013-06-11 15:42:44 +04:00
|
|
|
void vnc_display_add_client(DisplayState *ds, int csock, bool skipauth);
|
2011-03-16 15:33:36 +03:00
|
|
|
char *vnc_display_local_addr(DisplayState *ds);
|
|
|
|
#ifdef CONFIG_VNC
|
|
|
|
int vnc_display_password(DisplayState *ds, const char *password);
|
2010-10-07 13:50:45 +04:00
|
|
|
int vnc_display_pw_expire(DisplayState *ds, time_t expires);
|
2011-03-16 15:33:36 +03:00
|
|
|
#else
|
|
|
|
static inline int vnc_display_password(DisplayState *ds, const char *password)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
static inline int vnc_display_pw_expire(DisplayState *ds, time_t expires)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
};
|
|
|
|
#endif
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2008-02-10 19:33:14 +03:00
|
|
|
/* curses.c */
|
|
|
|
void curses_display_init(DisplayState *ds, int full_screen);
|
|
|
|
|
2012-08-31 06:56:25 +04:00
|
|
|
/* input.c */
|
|
|
|
int index_from_key(const char *key);
|
|
|
|
int index_from_keycode(int code);
|
|
|
|
|
2013-02-20 17:43:20 +04:00
|
|
|
/* gtk.c */
|
|
|
|
void early_gtk_display_init(void);
|
2013-06-10 22:04:43 +04:00
|
|
|
void gtk_display_init(DisplayState *ds, bool full_screen);
|
2013-02-20 17:43:20 +04:00
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
#endif
|