File: ui_sample_sb_view_lib.h

package info (click to toggle)
mlterm 3.9.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,340 kB
  • sloc: ansic: 154,713; sh: 5,302; cpp: 2,953; objc: 2,776; java: 2,472; makefile: 2,445; perl: 1,674; xml: 44
file content (38 lines) | stat: -rw-r--r-- 931 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
/* -*- c-basic-offset:2; tab-width:2; indent-tabs-mode:nil -*- */

#ifndef __UI_SAMPLE_SB_VIEW_LIB_H__
#define __UI_SAMPLE_SB_VIEW_LIB_H__

#include <ui_sb_view.h>

typedef struct sample_sb_view {
  ui_sb_view_t view;

  GC gc;

  unsigned long black_pixel;
  unsigned long white_pixel;

  Pixmap arrow_up;
  Pixmap arrow_up_dent;
  Pixmap arrow_down;
  Pixmap arrow_down_dent;

} sample_sb_view_t;

Pixmap ui_get_icon_pixmap(ui_sb_view_t *view, GC gc,
#ifdef USE_WIN32GUI
                          GC memgc,
#endif
                          char **data, unsigned int width, unsigned int height, unsigned int depth,
                          unsigned long black, unsigned long white);

int ui_draw_icon_pixmap_fg(ui_sb_view_t *view,
#ifdef USE_WIN32GUI
                           GC gc,
#else
                           Pixmap arrow,
#endif
                           char **data, unsigned int width, unsigned int height);

#endif