2012-04-25 20:28:09 +04:00
|
|
|
/*
|
2013-05-30 17:07:49 +04:00
|
|
|
* $Id: ede-panel.cpp 3463 2012-12-17 15:49:33Z karijes $
|
2012-04-25 20:28:09 +04:00
|
|
|
*
|
2013-05-30 17:07:49 +04:00
|
|
|
* Copyright (C) 2006-2013 Sanel Zukan
|
|
|
|
*
|
|
|
|
* 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.
|
2012-04-25 20:28:09 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include <FL/Fl_Window.H>
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/Fl_Button.H>
|
|
|
|
#include <FL/Fl_Input.H>
|
|
|
|
#include <FL/Fl_Choice.H>
|
2012-05-07 12:53:13 +04:00
|
|
|
#include <FL/Fl_Menu_Item.H>
|
2012-04-25 20:28:09 +04:00
|
|
|
#include <FL/Fl_Shared_Image.H>
|
2012-05-10 15:19:19 +04:00
|
|
|
#include <FL/Fl_File_Chooser.H>
|
2012-04-25 20:28:09 +04:00
|
|
|
|
|
|
|
#include <edelib/Nls.h>
|
|
|
|
#include <edelib/String.h>
|
|
|
|
#include <edelib/IconChooser.h>
|
|
|
|
#include <edelib/DesktopFile.h>
|
|
|
|
#include <edelib/Debug.h>
|
|
|
|
#include <edelib/Directory.h>
|
|
|
|
#include <edelib/File.h>
|
|
|
|
#include <edelib/StrUtil.h>
|
|
|
|
#include <edelib/Util.h>
|
|
|
|
#include <edelib/MessageBox.h>
|
2012-05-15 16:49:16 +04:00
|
|
|
#include <edelib/IconLoader.h>
|
2012-04-25 20:28:09 +04:00
|
|
|
|
|
|
|
#include "IconDialog.h"
|
|
|
|
#include "DesktopIcon.h"
|
2013-05-30 17:07:49 +04:00
|
|
|
#include "Desktop.h"
|
2012-04-25 20:28:09 +04:00
|
|
|
|
2012-05-15 16:49:16 +04:00
|
|
|
EDELIB_NS_USING_LIST(10, (str_tolower, icon_chooser, dir_home, build_filename, alert,
|
|
|
|
ICON_SIZE_HUGE, String, IconLoader, DesktopFile, DESK_FILE_TYPE_APPLICATION))
|
|
|
|
|
|
|
|
#define DEFAULT_ICON "empty"
|
2012-04-25 20:28:09 +04:00
|
|
|
|
|
|
|
/* it is safe to be globals */
|
|
|
|
static Fl_Window *win;
|
|
|
|
static Fl_Button *img, *browse, *ok, *cancel;
|
|
|
|
static Fl_Input *name, *comment, *execute;
|
|
|
|
static Fl_Choice *icon_type;
|
|
|
|
static String img_path;
|
|
|
|
|
2012-05-07 12:53:13 +04:00
|
|
|
/* the only supported type for now is application */
|
|
|
|
static Fl_Menu_Item menu_items[] = {
|
|
|
|
{_("Application"), 0, 0, 0},
|
|
|
|
{0}
|
|
|
|
};
|
|
|
|
|
2012-04-25 20:28:09 +04:00
|
|
|
static bool is_empty(const char *str) {
|
|
|
|
if(!str) return true;
|
|
|
|
const char *p = str;
|
|
|
|
|
|
|
|
while(*p++)
|
|
|
|
if(!isspace(*p)) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool is_empty_input(Fl_Input *i) {
|
|
|
|
return is_empty(i->value());
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cancel_cb(Fl_Widget*, void*) {
|
|
|
|
win->hide();
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:07:49 +04:00
|
|
|
static void ok_cb(Fl_Widget*, void *d) {
|
2012-04-25 20:28:09 +04:00
|
|
|
if(is_empty_input(name) || is_empty_input(execute) || !img->image()) {
|
|
|
|
/* do nothing */
|
|
|
|
win->hide();
|
|
|
|
return;
|
|
|
|
}
|
2013-05-30 17:07:49 +04:00
|
|
|
|
|
|
|
Desktop *self = (Desktop*)d;
|
|
|
|
|
2012-04-25 20:28:09 +04:00
|
|
|
DesktopFile df;
|
|
|
|
df.create_new(DESK_FILE_TYPE_APPLICATION);
|
|
|
|
df.set_name(name->value());
|
|
|
|
|
|
|
|
if(comment->value())
|
|
|
|
df.set_comment(comment->value());
|
|
|
|
|
2012-12-26 05:53:08 +04:00
|
|
|
df.set_icon((img_path.length() > 1) ? img_path.c_str() : DEFAULT_ICON);
|
2012-04-25 20:28:09 +04:00
|
|
|
df.set_exec(execute->value());
|
|
|
|
|
|
|
|
/* determine filename and save it */
|
|
|
|
String file = name->value();
|
|
|
|
const char *fp = file.c_str();
|
|
|
|
|
|
|
|
str_tolower((unsigned char*)fp);
|
|
|
|
file += ".desktop";
|
|
|
|
|
2012-05-18 16:06:32 +04:00
|
|
|
/* go through the file and replace spaces with '_' */
|
2013-05-30 17:07:49 +04:00
|
|
|
for(String::size_type i = 0; i < file.length(); i++)
|
|
|
|
if(isspace(file[i])) file[i] = '_';
|
2012-05-18 16:06:32 +04:00
|
|
|
|
2013-05-30 17:07:49 +04:00
|
|
|
String path = build_filename(self->desktop_path(), file.c_str());
|
2012-04-25 20:28:09 +04:00
|
|
|
|
|
|
|
if(df.save(path.c_str())) {
|
2013-05-30 17:07:49 +04:00
|
|
|
DesktopIcon *ic = self->read_desktop_file(path.c_str(), file.c_str());
|
|
|
|
if(ic) self->add(ic);
|
|
|
|
self->redraw();
|
2012-04-25 20:28:09 +04:00
|
|
|
} else {
|
|
|
|
alert(_("Unable to create '%s' file. Received error is: %s\n"), path.c_str(), df.strerror());
|
|
|
|
}
|
|
|
|
|
|
|
|
win->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void img_browse_cb(Fl_Widget*, void*) {
|
|
|
|
img_path = icon_chooser(ICON_SIZE_HUGE);
|
|
|
|
|
2013-01-04 19:01:55 +04:00
|
|
|
if(!img_path.empty())
|
|
|
|
IconLoader::set(img, img_path.c_str(), ICON_SIZE_HUGE);
|
2012-04-25 20:28:09 +04:00
|
|
|
}
|
|
|
|
|
2012-05-10 15:19:19 +04:00
|
|
|
static void file_browse_cb(Fl_Widget*, void*) {
|
|
|
|
const char *p = fl_file_chooser(_("Choose program path to execute"), "*", 0, 0);
|
|
|
|
if(!p) return;
|
|
|
|
execute->value(p);
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:07:49 +04:00
|
|
|
void icon_dialog_icon_create(Desktop *self) {
|
2012-04-25 20:28:09 +04:00
|
|
|
win = new Fl_Window(430, 170, _("Create desktop icon"));
|
|
|
|
img = new Fl_Button(10, 10, 75, 75);
|
|
|
|
img->callback(img_browse_cb);
|
2012-05-10 15:19:19 +04:00
|
|
|
img->tooltip(_("Click to select icon"));
|
2012-05-15 16:49:16 +04:00
|
|
|
IconLoader::set(img, DEFAULT_ICON, ICON_SIZE_HUGE);
|
2012-04-25 20:28:09 +04:00
|
|
|
name = new Fl_Input(205, 10, 215, 25, _("Name:"));
|
|
|
|
comment = new Fl_Input(205, 40, 215, 25, _("Comment:"));
|
|
|
|
execute = new Fl_Input(205, 70, 185, 25, _("Execute:"));
|
|
|
|
browse = new Fl_Button(395, 70, 25, 25, "...");
|
2012-05-10 15:19:19 +04:00
|
|
|
browse->callback(file_browse_cb);
|
2012-04-25 20:28:09 +04:00
|
|
|
icon_type = new Fl_Choice(205, 100, 215, 25, _("Type:"));
|
|
|
|
icon_type->down_box(FL_BORDER_BOX);
|
2012-05-07 12:53:13 +04:00
|
|
|
icon_type->menu(menu_items);
|
2012-04-25 20:28:09 +04:00
|
|
|
|
|
|
|
ok = new Fl_Button(235, 135, 90, 25, _("&OK"));
|
2013-05-30 17:07:49 +04:00
|
|
|
ok->callback(ok_cb, self);
|
2012-04-25 20:28:09 +04:00
|
|
|
cancel = new Fl_Button(330, 135, 90, 25, _("&Cancel"));
|
|
|
|
cancel->callback(cancel_cb);
|
|
|
|
win->end();
|
2012-05-07 12:53:13 +04:00
|
|
|
win->set_modal();
|
2012-05-15 16:51:09 +04:00
|
|
|
|
|
|
|
Fl::focus(name);
|
2012-04-25 20:28:09 +04:00
|
|
|
win->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void icon_dialog_icon_property(DesktopIcon *d) {
|
|
|
|
}
|