mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-22 19:03:44 +02:00
Add "editable" parameter: when "false", the link can't be modified.
If omitted, the default value is "true".
This commit is contained in:
parent
c1a95a2fa6
commit
170a7dc4c6
@ -1019,7 +1019,7 @@ void GMenu2X::contextMenu() {
|
||||
}
|
||||
}
|
||||
|
||||
if (menu->selLinkApp()!=NULL) {
|
||||
if (menu->selLinkApp()!=NULL && menu->selLinkApp()->isEditable()) {
|
||||
{
|
||||
MenuOption opt = {tr.translate("Edit $1",menu->selLink()->getTitle().c_str(),NULL), MakeDelegate(this, &GMenu2X::editLink)};
|
||||
voices.push_back(opt);
|
||||
|
@ -66,6 +66,7 @@ LinkApp::LinkApp(GMenu2X *gmenu2x_, Touchscreen &ts, InputManager &inputMgr_,
|
||||
selectorfilter = "";
|
||||
icon = iconPath = "";
|
||||
selectorbrowser = false;
|
||||
editable = true;
|
||||
#ifdef PLATFORM_DINGUX
|
||||
consoleApp = false;
|
||||
#endif
|
||||
@ -195,6 +196,9 @@ LinkApp::LinkApp(GMenu2X *gmenu2x_, Touchscreen &ts, InputManager &inputMgr_,
|
||||
#endif
|
||||
} else if (name == "selectorfilter") {
|
||||
setSelectorFilter( value );
|
||||
} else if (name == "editable") {
|
||||
if (value == "false")
|
||||
editable = false;
|
||||
#ifdef HAVE_LIBOPK
|
||||
} else
|
||||
WARNING("Unrecognized option: '%s'\n", name.c_str());
|
||||
|
@ -40,7 +40,7 @@ private:
|
||||
std::string sclock;
|
||||
int iclock;
|
||||
std::string exec, params, workdir, manual, selectordir, selectorfilter, selectorscreens;
|
||||
bool selectorbrowser;
|
||||
bool selectorbrowser, editable;
|
||||
void drawRun();
|
||||
|
||||
std::string aliasfile;
|
||||
@ -99,6 +99,7 @@ public:
|
||||
void showManual();
|
||||
void selector(int startSelection=0, const std::string &selectorDir="");
|
||||
bool targetExists();
|
||||
bool isEditable() { return editable; }
|
||||
|
||||
const std::string &getFile() { return file; }
|
||||
void renameFile(const std::string &name);
|
||||
|
Loading…
Reference in New Issue
Block a user