graph: try to fix rolled up bag

git-svn-id: svn://kolibrios.org@2870 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2012-07-13 17:40:07 +00:00
parent 645e347dff
commit 41e328ec55

View File

@ -1,4 +1,3 @@
#include "func.h" #include "func.h"
#include "parser.h" #include "parser.h"
#include "kolibri.h" #include "kolibri.h"
@ -45,7 +44,7 @@ Dword point_count = 0;
double x1,y1,x2,y2; double x1,y1,x2,y2;
char *funct = NULL; char *funct = NULL;
char edit_path[256]; char edit_path[1024];
//Dword editbox_y = WND_H - 16, editbox_w = WND_W - 70; //Dword editbox_y = WND_H - 16, editbox_w = WND_W - 70;
edit_box mybox = {0,9*8-5,WND_H - 16-32,0xffffff,0x6a9480,0,0x808080,0,99,(dword)&edit_path,0}; edit_box mybox = {0,9*8-5,WND_H - 16-32,0xffffff,0x6a9480,0,0x808080,0,99,(dword)&edit_path,0};
@ -377,7 +376,6 @@ int load_points3()
kosBDVK bdvk; kosBDVK bdvk;
int filePointer = 0; int filePointer = 0;
Dword count;
int i,j,k; int i,j,k;
double d; double d;
Dword filesize, num_number; Dword filesize, num_number;
@ -553,14 +551,12 @@ double fu(double x)
void draw_window(void) void draw_window(void)
{ {
char str[80]; double xx0=0.0, yy0=0.0;
int i;
double xx0=0.0, yy0=0.0, xx,yy;
sProcessInfo info; sProcessInfo info;
Dword wi, he; Dword wi, he;
void *p; void *p;
for (i = 0; i < 1024; i++) for (int i = 0; i < 1024; i++)
info.rawData[i] = 0; info.rawData[i] = 0;
kos_ProcessInfo(&info, 0xFFFFFFFF); kos_ProcessInfo(&info, 0xFFFFFFFF);
@ -576,12 +572,11 @@ void draw_window(void)
mybox.top = he - 45; mybox.top = he - 45;
mybox.width = wi - mybox.left - 80; mybox.width = wi - mybox.left - 80;
// start redraw
kos_WindowRedrawStatus(1); kos_WindowRedrawStatus(1);
kos_DefineAndDrawWindow(10,40,WND_W,WND_H, kos_DefineAndDrawWindow(10,40,WND_W,WND_H, 0x33,0xFFFFFF,0,0,(Dword)full_head);
0x33,0xFFFFFF,0,0,(Dword)full_head); kos_WindowRedrawStatus(2);
rtlDebugOutString("entering draw_window\n"); if (info.rawData[70]&0x04) return; //íè÷åãî íå äåëàòü åñëè îêíî ñõëîïíóòî â çàãîëîâîê
if (point_count == 0 && funct == NULL) if (point_count == 0 && funct == NULL)
{ {
@ -602,8 +597,6 @@ void draw_window(void)
kos_DefineButton(wi - 70, mybox.top, 50, 12, 5, 0xc0c0c0); kos_DefineButton(wi - 70, mybox.top, 50, 12, 5, 0xc0c0c0);
kos_WriteTextToWindow(wi - 58, mybox.top + 4, 0, 0, (char*)str_editfile, strlen(str_editfile)); kos_WriteTextToWindow(wi - 58, mybox.top + 4, 0, 0, (char*)str_editfile, strlen(str_editfile));
// end redraw
kos_WindowRedrawStatus(2);
} }
void kos_Main() void kos_Main()
@ -677,10 +670,8 @@ void kos_Main()
kos_GetButtonID(button); kos_GetButtonID(button);
if (button == 1) if (button == 1)
kos_ExitApp(); kos_ExitApp();
else if (button == 5) if (button == 5)
{
LaunchTinypad(); LaunchTinypad();
}
} }
} }
} }