summaryrefslogtreecommitdiff
path: root/src/istatbar.cpp
blob: f79b425cbe2464ef3e1da6b8aa92e746ed043c20 (plain)
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
/**************************************************************************\
 ibtk (Insomnia's Basic ToolKit)

  By Insomnia (Steaphan Greene)
  (insomnia@core.binghamton.edu)

  Copyright (C) 1999 Steaphan Greene

  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., 59 Temple Place, Suite 330, Boston, MA 02111, USA.

\**************************************************************************/

#include <stdio.h>
#include <string.h>

#include "istatbar.h"

IStatBar::~IStatBar()  {
  Win->RemoveClaim(this);
  }

IStatBar::IStatBar(IWindow *w, int xp, int yp, int xs, int ys)  {
  Init(w, xp, yp, xs, ys);
  }

void IStatBar::Init(IWindow *w, int xp, int yp, int xs, int ys)  {
  progress = 0;
  total = 0;
  xpos = xp; ypos = yp; xsize = xs; ysize = ys;
  Win = w;
  Window wind = w->GetWindowBuffer();
  Display *disp = w->GetDisplay();
  unsigned int s, p, b, g, gl, gd;
  Img = XCreatePixmap(disp, wind, xs, ys, DefaultDepth(disp, 0));
  GC gc = Win->GetGC();

//  printf("Depth = %d\n", DefaultDepth(disp, 0));

  s = w->GetSelectColor();
  p = w->GetPaperColor();
  b = w->GetFGColor();
  g = w->GetBGColor();
  gl = w->GetLBGColor();
  gd = w->GetDBGColor();

  XSetForeground(disp, gc, gl);
  XFillRectangle(disp, Img, gc, 0, 0, xs, ys);

  XSetForeground(disp, gc, g);
  XFillRectangle(disp, Img, gc, 2, 2, xs-4, ys-4);

  XSetForeground(disp, gc, gd);
  XFillRectangle(disp, Img, gc, 0, 0, xs-1, 2);
  XFillRectangle(disp, Img, gc, 0, 2, 2, ys-3);
  XDrawPoint(disp, Img, gc, 0, ys-1);
  XDrawPoint(disp, Img, gc, xs-1, 0);

  parent=NULL;

  w->AddClaim(this, xp, yp, xs, ys);

  Redraw();
  }

void IStatBar::Redraw()  {
  if(hidden) return;

  Window w = Win->GetWindowBuffer();
  Display *disp = Win->GetDisplay();
  GC gc = Win->GetGC();

  char txt[18];
  if(total > 0 && progress >= 0)
    sprintf(txt, "%d%% done%c", (progress*100)/total, 0);
  XFontStruct *fs;
  XCharStruct cs;
  int dir, as, des;
  fs = Win->GetFontStruct();
  XTextExtents(fs, txt, strlen(txt), &dir, &as, &des, &cs);
  int len = cs.width;
  XSetForeground(disp, gc, Win->GetBGColor());
  XFillRectangle(disp, Img, gc, 2, 2, xsize-4, ysize-4);
  XSetBackground(disp, gc, Win->GetBGColor());
  XSetForeground(disp, gc, Win->GetFGColor());
  XDrawImageString(disp, Img, gc, (xsize-(len-1))>>1,
	(ysize+ysize-(as+des-2))>>1, txt, strlen(txt));

  if(total > 0 && ((progress*(xsize-4))/total) > 0)  {
    int xbar = (xsize-4) <? ((progress*(xsize-4))/total);
    Pixmap Wrk = XCreatePixmap(disp, w, xbar, ysize-4, DefaultDepth(disp, 0));
    XSetForeground(disp, gc, Win->GetSelectColor());
    XFillRectangle(disp, Wrk, gc, 0, 0, xbar, ysize-4);
    XSetForeground(disp, gc, Win->GetPaperColor());
    XSetBackground(disp, gc, Win->GetSelectColor());
    XDrawImageString(disp, Wrk, gc, ((xsize-(len-1))>>1)-2,
	((ysize+ysize-(as+des-2))>>1)-2, txt, strlen(txt));
    XCopyArea(disp, Wrk, Img, gc, 0, 0, xbar, ysize-4, 2, 2);
    XFreePixmap(disp, Wrk);
    }

  XCopyArea(disp, Img, w, gc, 0, 0, xsize, ysize, xpos, ypos);
  Win->Redraw(xpos, ypos, xsize, ysize);
  }