-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOpenWith.cpp
215 lines (168 loc) · 5.36 KB
/
OpenWith.cpp
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*
* $Id$
*
* EFiler - EDE File Manager
* Part of Equinox Desktop Environment (EDE).
* Copyright (c) 2000-2007 EDE Authors.
*
* This program is licenced under terms of the
* GNU General Public Licence version 2 or newer.
* See COPYING for details.
*/
// Open with.. dialog window
#include "OpenWith.h"
#include <edelib/IconTheme.h>
#include <edelib/IconLoader.h>
#include <edelib/Run.h>
#include <FL/Fl.H>
#include <FL/Fl_Group.H>
#include <FL/Fl_Box.H>
#include <FL/Fl_Input.H>
#include <FL/Fl_Button.H>
#include <FL/Fl_Return_Button.H>
#include <FL/Fl_Shared_Image.H>
#include <FL/Fl_File_Chooser.H>
#include <stdio.h>
#include <stdlib.h> // getenv()
#include <dirent.h>
#include <sys/stat.h>
#include "Util.h"
#include "mailcap.h"
#define DIALOG_WIDTH 410
#define DIALOG_HEIGHT 145
// Callbacks
void openwith_cancel_cb(Fl_Widget*w, void*) {
Fl_Window* win = (Fl_Window*)w->parent();
win->hide();
}
// This function is friend of OpenWith because it needs to access
// _type and _file
void openwith_ok_cb(Fl_Widget*w, void*i) {
Fl_Input* inpt = (Fl_Input*)i;
OpenWith* win = (OpenWith*)w->parent();
// Handle Always use... button
if (win->always_use->value() == 1) {
mailcap_add_type(win->_type, inpt->value());
}
// Run program
int k = edelib::run_async("%s '%s'", inpt->value(), win->_file);
fprintf(stderr, "-- openwith_ok_cb: %s '%s'", inpt->value(), win->_file);
win->hide();
}
void openwith_browse_cb(Fl_Widget*w, void*i) {
Fl_Input* inpt = (Fl_Input*)i;
char *file = fl_file_chooser(_("Choose program"),0,0);
inpt->value(file);
}
// Callback that handles "autocomplete" in the openwith dialog
void program_input_cb(Fl_Widget*w, void*p) {
edelib::list<edelib::String>* progs = (edelib::list<edelib::String>*)p;
Fl_Input *inpt = (Fl_Input*)w;
Fl_Window *win = (Fl_Window*)w->parent();
if (Fl::event()==FL_KEYDOWN && Fl::event_key()!=FL_BackSpace && Fl::event_key()!=FL_Delete) {
const char* loc = inpt->value(); // shortcut
if (strlen(loc)<1 || loc[strlen(loc)-1]=='/') return;
uint pos = inpt->position();
if (pos!=strlen(loc)) return; // cursor in the middle
int mark = inpt->mark();
if (Fl::event_key()==FL_Enter) {
inpt->mark(pos);
// Move focus to Ok button
win->child(3)->take_focus();
return;
}
edelib::list<edelib::String>::iterator it1, it2;
it1 = progs->begin();
it2 = progs->end();
while (it1 != it2) {
if (strncmp(loc, (*it1).c_str(), strlen(loc))==0) break;
++it1;
}
if (it1==it2) return;
inpt->replace(pos, mark, (*it1).c_str()+pos);
inpt->position(pos);
inpt->mark(strlen((*it1).c_str()));
}
}
// OpenWith constructor
// Also initializes various internal arrays
OpenWith::OpenWith() : edelib::Window(DIALOG_WIDTH, DIALOG_HEIGHT, _("Choose program")), _file(0) {
set_modal();
edelib::list<edelib::String>::iterator it1, it2;
dirent **files;
struct stat buf;
char pn[FL_PATH_MAX];
Fl_Group *gr;
Fl_Box *img;
Fl_Image* i;
Fl_Button *but1, *but2, *but3;
// Window design
begin();
img = new Fl_Box(10, 10, 60, 55); // icon
// informative text
txt = new Fl_Box(75, 10, w()-85, 25);
txt->align(FL_ALIGN_INSIDE | FL_ALIGN_LEFT | FL_ALIGN_WRAP);
// input for program name
inpt = new Fl_Input(75, 45, w()-175, 25);
inpt->when(FL_WHEN_ENTER_KEY_CHANGED);
inpt->callback(program_input_cb, &programs);
// Ok & Cancel buttons
but1 = new Fl_Return_Button(w()-200, 115, 90, 25, "&Ok");
but2 = new Fl_Button(w()-100, 115, 90, 25, "&Cancel");
but1->callback(openwith_ok_cb,inpt);
but2->callback(openwith_cancel_cb);
// Browse button
but3 = new Fl_Button(w()-90, 45, 80, 25, "&Browse...");
but3->callback(openwith_browse_cb,inpt);
// Always use this program...
always_use = new Fl_Check_Button(75, 80, w()-85, 20);
always_use->align(FL_ALIGN_INSIDE | FL_ALIGN_LEFT | FL_ALIGN_TOP | FL_ALIGN_WRAP);
end();
// Set icon
if(edelib::IconLoader::inited()) {
i = Fl_Shared_Image::get(edelib::IconLoader::get_path("dialog-question", edelib::ICON_SIZE_MEDIUM).c_str());
if(!i) return;
img->image(i);
}
// -- Find all executables in $PATH and add them to programs list
// Split $PATH at ':' character
char* path = strdup(getenv("PATH")); // original would get destroyed
char *pathpart = strtok(path, ":");
while (pathpart) {
// Get list of files in pathpart
int size = scandir(pathpart, &files, 0, alphasort);
for (int i=0; i<size; i++) {
// Attach filename to directory to get full path
char *n = files[i]->d_name;
snprintf (pn,FL_PATH_MAX-1,"%s/%s",pathpart,n);
if (stat(pn,&buf)) continue; // some kind of error
// Skip all directories and non-executables
if (!S_ISDIR(buf.st_mode) && (buf.st_mode&S_IXOTH)) {
edelib::String name(n);
it1=programs.begin(); it2=programs.end();
bool exists=false;
while (it1 != it2) {
if (*it1==name) { exists=true;break;}
++it1;
}
if (!exists) programs.push_back(n);
}
Fl::check();
}
pathpart=strtok(NULL, ":");
Fl::check();
}
free(path);
programs.sort();
}
void OpenWith::show(const char* pfile, const char* ptype, const char* pcomment) {
_file=pfile;
_type=ptype;
// Clear input box
inpt->value("");
// Set textual description
txt->copy_label(tsprintf(_("Enter the name of application used to open file \"%s\":"),fl_filename_name(pfile)));
// Set "always use" label
always_use->copy_label(tsprintf(_("Always use this program for opening files of type \"%s\""), pcomment));
edelib::Window::show();
}