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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
/* WebDownloader for X-Window
* Copyright (C) 1999-2002 Koshelev Maxim
* This Program is free but not GPL!!! You can't modify it
* without agreement with author. You can't distribute modified
* program but you can distribute unmodified program.
*
* 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.
*/
#include <stdio.h>
#include <string.h>
#include "columns.h"
#include "misc.h"
#include "../ntlocale.h"
#include "../main.h"
#include "../var.h"
char *columns_names[]={
N_("status"),
N_("file name"),
N_("type of file"),
N_("size of file"),
N_("downloaded size"),
N_("rest"),
N_("percent"),
N_("speed"),
N_("elapsed time"),
N_("estimated time"),
N_("time of pause"),
N_("number of attempts"),
N_("description"),
N_("URL"),
"[NONE]"
};
GList *tColumnsPrefs::find_by_data(GList *where, char *what){
GList *list=where;
while (list){
if (strcmp(what,(char *)(list->data))==0) break;
list=list->next;
};
return list;
};
tColumnsPrefs::tColumnsPrefs(){
tmp_apply_flag=0;
};
void tColumnsPrefs::reset(){
tmp_apply_flag=0;
};
void tColumnsPrefs::init(d4xQueueView *qva){
qv=qva;
int vsize=(NOTHING_COL+1)/2;
box=gtk_table_new(vsize,2,FALSE);
for (int i=0;i<NOTHING_COL;i++){
columns[i]=gtk_check_button_new_with_label(_(columns_names[i]));
int temp=i<vsize?i:i-vsize;
gtk_table_attach_defaults(GTK_TABLE(box),columns[i],i/vsize,i/vsize+1,temp,temp+1);
if (tmp_apply_flag){
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(columns[i]),tmp_apply[i]);
}else{
if (qv->prefs.cols[i].enum_index<qv->prefs.cols[NOTHING_COL].enum_index)
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(columns[i]),TRUE);
else
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(columns[i]),FALSE);
};
};
frame=gtk_frame_new(_("Showed columns"));
gtk_container_add(GTK_CONTAINER(frame),box);
box=gtk_vbox_new(FALSE,0);
gtk_box_pack_start(GTK_BOX(box),frame,FALSE,FALSE,0);
gtk_box_pack_start(GTK_BOX(box),gtk_hbox_new(FALSE,0),FALSE,FALSE,0);
};
static gint compare_nodes(gconstpointer a,gconstpointer b){
gint aa=((tDownload *)(a))->GTKCListRow;
gint bb=((tDownload *)(b))->GTKCListRow;
if (aa>bb) return 1;
if (aa==bb) return 0;
return -1;
};
void tColumnsPrefs::add_to_sort(tDownload *what){
sort_list=g_list_insert_sorted(sort_list,what,compare_nodes);
while(sort_list && ((tDownload *)(sort_list->data))->GTKCListRow==first){
tDownload *tmp=(tDownload *)(sort_list->data);
qv->add(tmp); //FIXME: GTK2 :-)
sort_list=g_list_remove(sort_list,tmp);
first+=1;
};
};
void tColumnsPrefs::add_to_list(int list){
tDownload *temp=D4X_QUEUE->last(list);
while (temp){
add_to_sort(temp);
temp=(tDownload *)(temp->next);
};
};
void tColumnsPrefs::apply_changes_tmp(){
tmp_apply_flag=1;
for (int i=0;i<NOTHING_COL;i++){
tmp_apply[i]=GTK_TOGGLE_BUTTON(columns[i])->active;
};
};
int tColumnsPrefs::apply_changes(){
return(0);
/* FIXME: GTK2
if (tmp_apply_flag==0) return(0);
tColumn temp[NOTHING_COL+1];
temp[NOTHING_COL].type=temp[NOTHING_COL].enum_index=NOTHING_COL;
int a=0;
for (int i=0;i<NOTHING_COL;i++){
if (!tmp_apply[i]){
//move "down" NOTHING_COL
temp[temp[NOTHING_COL].enum_index-1].type=NOTHING_COL;
temp[NOTHING_COL].enum_index-=1;
//move curent columns before NOTHING_COL
temp[temp[NOTHING_COL].enum_index+1].type=i;
temp[i].enum_index=temp[NOTHING_COL].enum_index+1;
}else{
temp[a].type=i;
temp[i].enum_index=a;
a+=1;
};
};
//copy columns sizes from old layer
qv->get_sizes();
for (int i=0;i<=NOTHING_COL;i++){
temp[temp[i].enum_index].size=qv->prefs.cols[qv->prefs.cols[i].enum_index].size;
};
//copy new layer to old
int need_reinit=0;
if (qv->prefs.cols[NOTHING_COL].enum_index!=temp[NOTHING_COL].enum_index)
need_reinit=1;
for (int i=0;i<=NOTHING_COL;i++){
qv->prefs.cols[i].enum_index=temp[i].enum_index;
qv->prefs.cols[i].size=temp[i].size;
if (qv->prefs.cols[i].type!=temp[i].type)
need_reinit=1;
qv->prefs.cols[i].type=temp[i].type;
};
//delete old list and create new
need_reinit=0;
if (need_reinit){
for (gint row=0;;row+=1){
tDownload *dwn=qv->get_download(row);
if (dwn==NULL) break;
dwn->GTKCListRow=row;
};
lod_get_height();
//FIXME:GTK2
// gtk_signal_handlers_destroy(GTK_OBJECT(qv->ListOfDownloads));
// FIXME: bad style of accessing to class' members
gtk_widget_destroy(qv->ListOfDownloads);
qv->init();
first=0;
sort_list=NULL;
for(int i=DL_ALONE+1;i<DL_TEMP;i++)
add_to_list(i);
lod_set_height();
};
tmp_apply_flag=0;
return(need_reinit);
*/
};
GtkWidget *tColumnsPrefs::body(){
return box;
};
|