File: widget.h

package info (click to toggle)
libucimf 2.3.8-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,988 kB
  • ctags: 788
  • sloc: sh: 10,860; cpp: 3,766; ansic: 789; makefile: 67
file content (126 lines) | stat: -rw-r--r-- 2,793 bytes parent folder | download | duplicates (7)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
 * UCIMF - Unicode Console InputMethod Framework                                                    
 *
 * Copyright (c) 2006-2007 Chun-Yu Lee (Mat) and Open RazzmatazZ Laboratory (OrzLab)
 *
 * 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 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef __Widget
#define __Widget

#include "window.h"
#include "graphport.h"
#include "type.h"

#include <vector>
using std::vector;


class Widget
{
  public:
    Window* getWindow();
    GraphPort* getGraphPort();
    virtual void draw()=0;
    void render();
    
  protected:
    GraphPort *gp;
    Window *win;
};

class Status : public Widget{
  public:
    static Status* getInstance();
    
    void draw();
    void clear();
    void set_imf_name( char* );
    void set_im_name( char* );
    void set_lang_name( char* );
    void set_imf_status( char*, char*, char* );
    void set_bg_color( int );
    void set_fg_color( int );
    void set_border_color( int );

  protected:
    Status();

  private:
    static Status* _instance;

    int fg_color;
    int bg_color;
    int border_color;

    ustring imf_name;
    ustring im_name;
    ustring lang_name;
};

class Preedit : public Widget
{
  public:
    static Preedit* getInstance();

    void draw();
    void append( char* s);
    void append( char* s, const char* encoding);
    void set_bg_color( int );
    void set_fg_color( int );
    void set_border_color( int );
    void clear();
    
  protected: 
    Preedit();

  private:
    int fg_color;
    int bg_color;
    int border_color;

    static Preedit* _instance;
    ustring buf;
};

class LookupChoice : public Widget
{
  public:
    static LookupChoice* getInstance();

    void draw();
    void append( char* s);
    void append( char* s, const char* encoding);
    void append_next( char* s);
    void append_next( char* s, const char* encoding);
    void set_bg_color( int );
    void set_fg_color( int );
    void set_border_color( int );
    void clear();
    
  protected: 
    LookupChoice();

  private:
    int fg_color;
    int bg_color;
    int border_color;

    static LookupChoice* _instance;
    vector<ustring> bufs;
};

#endif