/* * $Id: IconProperties.h 2366 2008-10-02 09:42:19Z karijes $ * * ede-desktop, desktop and icon manager * Part of Equinox Desktop Environment (EDE). * Copyright (c) 2006-2012 EDE Authors. * * This program is licensed under terms of the * GNU General Public License version 2 or newer. * See COPYING for details. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "IconDialog.h" #include "DesktopIcon.h" #include "ede-desktop.h" EDELIB_NS_USING_LIST(9, (str_tolower, icon_chooser, dir_home, build_filename, alert, ICON_SIZE_HUGE, String, DesktopFile, DESK_FILE_TYPE_APPLICATION)) /* 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; /* the only supported type for now is application */ static Fl_Menu_Item menu_items[] = { {_("Application"), 0, 0, 0}, {0} }; 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(); } static void ok_cb(Fl_Widget*, void*) { if(is_empty_input(name) || is_empty_input(execute) || !img->image()) { /* do nothing */ win->hide(); return; } DesktopFile df; df.create_new(DESK_FILE_TYPE_APPLICATION); df.set_name(name->value()); if(comment->value()) df.set_comment(comment->value()); if(!img_path.empty() && img_path.length() > 1) { /* figure out basename */ const char *s; char *p, *e; s = img_path.c_str(); p = (char*)strrchr(s, E_DIR_SEPARATOR); if(p && *p++) { /* now remove extension */ e = (char*)strrchr((const char*)p, '.'); if(e) *e = '\0'; df.set_icon(p); } } else { df.set_icon("empty"); } 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"; /* TODO: let 'Desktop' (class) returns full desktop path */ String path = build_filename(dir_home().c_str(), "Desktop", file.c_str()); /* go through path and replace spaces with '_' */ for(char *p = (char*)path.c_str(); p && *p; p++) if(isspace(*p)) *p = '_'; /* * disable watching on folder and explicitly add file (probably as notification will be fired up faster than * file will be available on that location) */ Desktop::instance()->dir_watch_off(); if(df.save(path.c_str())) { /* explictly add file path */ Desktop::instance()->add_icon_by_path(path.c_str(), NULL); /* * wait a second; this would remove event from the queue so watched does not complain how filed * does not exists */ Fl::wait(1); Desktop::instance()->redraw(); } else { alert(_("Unable to create '%s' file. Received error is: %s\n"), path.c_str(), df.strerror()); } Desktop::instance()->dir_watch_on(); win->hide(); } static void img_browse_cb(Fl_Widget*, void*) { img_path = icon_chooser(ICON_SIZE_HUGE); if(img_path.empty()) return; Fl_Image* im = Fl_Shared_Image::get(img_path.c_str()); if(!im) return; img->image(im); img->redraw(); } void icon_dialog_icon_create(void) { win = new Fl_Window(430, 170, _("Create desktop icon")); img = new Fl_Button(10, 10, 75, 75); img->callback(img_browse_cb); 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, "..."); icon_type = new Fl_Choice(205, 100, 215, 25, _("Type:")); icon_type->down_box(FL_BORDER_BOX); icon_type->menu(menu_items); ok = new Fl_Button(235, 135, 90, 25, _("&OK")); ok->callback(ok_cb); cancel = new Fl_Button(330, 135, 90, 25, _("&Cancel")); cancel->callback(cancel_cb); win->end(); win->set_modal(); win->show(); } void icon_dialog_icon_property(DesktopIcon *d) { }