mirror of https://github.com/buggins/dlangide.git
add donate link to Help menu - #186
This commit is contained in:
parent
fec824d00a
commit
2f2a1e5351
|
@ -46,6 +46,7 @@ enum IDEActions : int {
|
||||||
|
|
||||||
HelpAbout,
|
HelpAbout,
|
||||||
HelpViewHelp,
|
HelpViewHelp,
|
||||||
|
HelpDonate,
|
||||||
WindowCloseDocument,
|
WindowCloseDocument,
|
||||||
WindowCloseAllDocuments,
|
WindowCloseAllDocuments,
|
||||||
WindowShowHomeScreen,
|
WindowShowHomeScreen,
|
||||||
|
@ -130,6 +131,7 @@ const Action ACTION_EDIT_TOGGLE_BLOCK_COMMENT = (new Action(EditorActions.Toggle
|
||||||
const Action ACTION_EDIT_PREFERENCES = (new Action(IDEActions.EditPreferences, "MENU_EDIT_PREFERENCES"c, null)).disableByDefault();
|
const Action ACTION_EDIT_PREFERENCES = (new Action(IDEActions.EditPreferences, "MENU_EDIT_PREFERENCES"c, null)).disableByDefault();
|
||||||
const Action ACTION_HELP_ABOUT = new Action(IDEActions.HelpAbout, "MENU_HELP_ABOUT"c);
|
const Action ACTION_HELP_ABOUT = new Action(IDEActions.HelpAbout, "MENU_HELP_ABOUT"c);
|
||||||
const Action ACTION_HELP_VIEW_HELP = new Action(IDEActions.HelpViewHelp, "MENU_HELP_VIEW_HELP"c);
|
const Action ACTION_HELP_VIEW_HELP = new Action(IDEActions.HelpViewHelp, "MENU_HELP_VIEW_HELP"c);
|
||||||
|
const Action ACTION_HELP_DONATE = new Action(IDEActions.HelpDonate, "MENU_HELP_DONATE"c);
|
||||||
const Action ACTION_WINDOW_CLOSE_DOCUMENT = new Action(IDEActions.WindowCloseDocument, "MENU_WINDOW_CLOSE_DOCUMENT"c, null, KeyCode.KEY_W, KeyFlag.Control);
|
const Action ACTION_WINDOW_CLOSE_DOCUMENT = new Action(IDEActions.WindowCloseDocument, "MENU_WINDOW_CLOSE_DOCUMENT"c, null, KeyCode.KEY_W, KeyFlag.Control);
|
||||||
const Action ACTION_WINDOW_CLOSE_ALL_DOCUMENTS = new Action(IDEActions.WindowCloseAllDocuments, "MENU_WINDOW_CLOSE_ALL_DOCUMENTS"c);
|
const Action ACTION_WINDOW_CLOSE_ALL_DOCUMENTS = new Action(IDEActions.WindowCloseAllDocuments, "MENU_WINDOW_CLOSE_ALL_DOCUMENTS"c);
|
||||||
const Action ACTION_WINDOW_SHOW_HOME_SCREEN = new Action(IDEActions.WindowShowHomeScreen, "MENU_WINDOW_SHOW_HOME_SCREEN"c);
|
const Action ACTION_WINDOW_SHOW_HOME_SCREEN = new Action(IDEActions.WindowShowHomeScreen, "MENU_WINDOW_SHOW_HOME_SCREEN"c);
|
||||||
|
|
|
@ -44,7 +44,6 @@ import std.array : empty;
|
||||||
import std.string : split;
|
import std.string : split;
|
||||||
import std.path;
|
import std.path;
|
||||||
|
|
||||||
immutable string HELP_PAGE_URL = "https://github.com/buggins/dlangide/wiki";
|
|
||||||
// TODO: get version from GIT commit
|
// TODO: get version from GIT commit
|
||||||
//version is now stored in file views/VERSION
|
//version is now stored in file views/VERSION
|
||||||
immutable dstring DLANGIDE_VERSION = toUTF32(import("VERSION"));
|
immutable dstring DLANGIDE_VERSION = toUTF32(import("VERSION"));
|
||||||
|
@ -733,8 +732,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
//windowItem.add(new Action(30, "MENU_WINDOW_PREFERENCES"));
|
//windowItem.add(new Action(30, "MENU_WINDOW_PREFERENCES"));
|
||||||
windowItem.add(ACTION_WINDOW_CLOSE_DOCUMENT, ACTION_WINDOW_CLOSE_ALL_DOCUMENTS, ACTION_WINDOW_SHOW_HOME_SCREEN);
|
windowItem.add(ACTION_WINDOW_CLOSE_DOCUMENT, ACTION_WINDOW_CLOSE_ALL_DOCUMENTS, ACTION_WINDOW_SHOW_HOME_SCREEN);
|
||||||
MenuItem helpItem = new MenuItem(new Action(4, "MENU_HELP"c));
|
MenuItem helpItem = new MenuItem(new Action(4, "MENU_HELP"c));
|
||||||
helpItem.add(ACTION_HELP_VIEW_HELP);
|
helpItem.add(ACTION_HELP_VIEW_HELP, ACTION_HELP_ABOUT, ACTION_HELP_DONATE);
|
||||||
helpItem.add(ACTION_HELP_ABOUT);
|
|
||||||
mainMenuItems.add(fileItem);
|
mainMenuItems.add(fileItem);
|
||||||
mainMenuItems.add(editItem);
|
mainMenuItems.add(editItem);
|
||||||
mainMenuItems.add(projectItem);
|
mainMenuItems.add(projectItem);
|
||||||
|
@ -914,6 +912,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
case IDEActions.HelpViewHelp:
|
case IDEActions.HelpViewHelp:
|
||||||
Platform.instance.openURL(HELP_PAGE_URL);
|
Platform.instance.openURL(HELP_PAGE_URL);
|
||||||
return true;
|
return true;
|
||||||
|
case IDEActions.HelpDonate:
|
||||||
|
Platform.instance.openURL(HELP_DONATION_URL);
|
||||||
|
return true;
|
||||||
case IDEActions.HelpAbout:
|
case IDEActions.HelpAbout:
|
||||||
//debug {
|
//debug {
|
||||||
// testDCDFailAfterThreadCreation();
|
// testDCDFailAfterThreadCreation();
|
||||||
|
|
|
@ -11,6 +11,10 @@ import dlangui.core.i18n;
|
||||||
import std.path;
|
import std.path;
|
||||||
import std.utf : toUTF32;
|
import std.utf : toUTF32;
|
||||||
|
|
||||||
|
immutable string HELP_PAGE_URL = "https://github.com/buggins/dlangide/wiki";
|
||||||
|
immutable string HELP_DONATION_URL = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H2ADZV8S6TDHQ";
|
||||||
|
|
||||||
|
|
||||||
class HomeScreen : ScrollWidget {
|
class HomeScreen : ScrollWidget {
|
||||||
protected IDEFrame _frame;
|
protected IDEFrame _frame;
|
||||||
protected HorizontalLayout _content;
|
protected HorizontalLayout _content;
|
||||||
|
@ -66,12 +70,13 @@ class HomeScreen : ScrollWidget {
|
||||||
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DUB_REP"c).value, "http://code.dlang.org/"));
|
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DUB_REP"c).value, "http://code.dlang.org/"));
|
||||||
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_UI"c).value, "https://github.com/buggins/dlangui"));
|
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_UI"c).value, "https://github.com/buggins/dlangui"));
|
||||||
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_IDE"c).value, "https://github.com/buggins/dlangide"));
|
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_IDE"c).value, "https://github.com/buggins/dlangide"));
|
||||||
|
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_IDE_HELP"c).value, HELP_PAGE_URL));
|
||||||
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_TOUR"c).value, "https://tour.dlang.org/"));
|
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_TOUR"c).value, "https://tour.dlang.org/"));
|
||||||
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_VIBED"c).value, "http://vibed.org/"));
|
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_VIBED"c).value, "http://vibed.org/"));
|
||||||
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_FORUM"c).value, "http://forum.dlang.org/"));
|
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_FORUM"c).value, "http://forum.dlang.org/"));
|
||||||
_column1.addChild(new VSpacer());
|
_column1.addChild(new VSpacer());
|
||||||
_column2.addChild((new TextWidget(null, UIString.fromId("DLANG_IDE_DONATE"c))).fontSize(20).textColor(linkColor));
|
_column2.addChild((new TextWidget(null, UIString.fromId("DLANG_IDE_DONATE"c))).fontSize(20).textColor(linkColor));
|
||||||
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_IDE_DONATE_PAYPAL"c).value, "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H2ADZV8S6TDHQ"));
|
_column2.addChild(new UrlImageTextButton(null, UIString.fromId("DLANG_IDE_DONATE_PAYPAL"c).value, HELP_DONATION_URL));
|
||||||
|
|
||||||
_column2.addChild(new VSpacer());
|
_column2.addChild(new VSpacer());
|
||||||
contentWidget = _content;
|
contentWidget = _content;
|
||||||
|
|
|
@ -10,11 +10,12 @@ D_LANG=D Programming Language
|
||||||
DUB_REP=DUB repository
|
DUB_REP=DUB repository
|
||||||
DLANG_UI=DLangUI on GitHub
|
DLANG_UI=DLangUI on GitHub
|
||||||
DLANG_IDE=DLangIDE on GitHub
|
DLANG_IDE=DLangIDE on GitHub
|
||||||
|
DLANG_IDE_HELP=DLangIDE documentation
|
||||||
DLANG_TOUR=DLang Tour
|
DLANG_TOUR=DLang Tour
|
||||||
DLANG_VIBED=Vibe-D
|
DLANG_VIBED=Vibe-D
|
||||||
DLANG_FORUM=Dlang Forum
|
DLANG_FORUM=Dlang Forum
|
||||||
DLANG_IDE_DONATE=Donate DlangIDE
|
DLANG_IDE_DONATE=Support DlangIDE
|
||||||
DLANG_IDE_DONATE_PAYPAL=PayPal
|
DLANG_IDE_DONATE_PAYPAL=Donate via PayPal
|
||||||
EXIT=Exit
|
EXIT=Exit
|
||||||
|
|
||||||
ALL_FILES=All files
|
ALL_FILES=All files
|
||||||
|
@ -96,6 +97,7 @@ MENU_WINDOW_SHOW_HOME_SCREEN=Show home screen
|
||||||
MENU_HELP=&Help
|
MENU_HELP=&Help
|
||||||
MENU_HELP_VIEW_HELP=&View help
|
MENU_HELP_VIEW_HELP=&View help
|
||||||
MENU_HELP_ABOUT=&About
|
MENU_HELP_ABOUT=&About
|
||||||
|
MENU_HELP_DONATE=Donate via PayPal
|
||||||
|
|
||||||
MENU_VIEW=&View
|
MENU_VIEW=&View
|
||||||
MENU_VIEW_LANGUAGE=Interface &Language
|
MENU_VIEW_LANGUAGE=Interface &Language
|
||||||
|
|
|
@ -10,6 +10,7 @@ D_LANG=Язык программирования D
|
||||||
DUB_REP=Хранилище DUB
|
DUB_REP=Хранилище DUB
|
||||||
DLANG_UI=DLangUI на GitHub
|
DLANG_UI=DLangUI на GitHub
|
||||||
DLANG_IDE=DLangIDE на GitHub
|
DLANG_IDE=DLangIDE на GitHub
|
||||||
|
DLANG_IDE_HELP=DLangIDE документация
|
||||||
DLANG_TOUR=Интерактивный тур D
|
DLANG_TOUR=Интерактивный тур D
|
||||||
DLANG_VIBED=Vibe-D
|
DLANG_VIBED=Vibe-D
|
||||||
DLANG_FORUM=Форум D
|
DLANG_FORUM=Форум D
|
||||||
|
@ -96,6 +97,7 @@ MENU_WINDOW_SHOW_HOME_SCREEN=Домашняя страница
|
||||||
MENU_HELP=&Справка
|
MENU_HELP=&Справка
|
||||||
MENU_HELP_VIEW_HELP=&Просмотр справки
|
MENU_HELP_VIEW_HELP=&Просмотр справки
|
||||||
MENU_HELP_ABOUT=&О программе
|
MENU_HELP_ABOUT=&О программе
|
||||||
|
MENU_HELP_DONATE=Поддержать проект через PayPal
|
||||||
|
|
||||||
MENU_VIEW=&Вид
|
MENU_VIEW=&Вид
|
||||||
MENU_VIEW_LANGUAGE=&Язык интерфейса
|
MENU_VIEW_LANGUAGE=&Язык интерфейса
|
||||||
|
|
Loading…
Reference in New Issue