summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralekhgupta1441 <alekhgupta1441@gmail.com>2020-04-18 16:16:15 +0530
committermormj <34754695+mormj@users.noreply.github.com>2020-05-06 07:47:36 -0400
commit5f36a1c8bf8205a2c4855d80411154ccde506536 (patch)
tree1c9e039b1b8551a7c9bdccc2d8b7499f3ab1ce61
parentbfeef69cc9bdec8e721e07b444392708098cfb90 (diff)
grc: Updated Dialogs
-rw-r--r--grc/gui/Dialogs.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/grc/gui/Dialogs.py b/grc/gui/Dialogs.py
index 9f937a7a57..d556507e65 100644
--- a/grc/gui/Dialogs.py
+++ b/grc/gui/Dialogs.py
@@ -336,6 +336,22 @@ def show_keyboard_shortcuts(parent):
).run_and_destroy()
+def show_get_involved(parent):
+ """Get Involved Instructions"""
+ markup = textwrap.dedent("""\
+ <tt><b>Welcome to GNU Radio Community!</b></tt>
+ \n\
+ <tt>For more details on contributing to GNU Radio and getting engaged with our great community visit </tt><a href="https://www.gnuradio.org/get-involved">here</a>.
+ \n\
+ <tt>You can also join our <a href="https://slack.gnuradio.org/">Slack Channel</a>, IRC Channel (#gnuradio) or contact through our <a href="https://lists.gnu.org/mailman/listinfo/discuss-gnuradio">mailing list(discuss-gnuradio)</a></tt>.
+ \
+ """)
+
+ MessageDialogWrapper(
+ parent, Gtk.MessageType.QUESTION, Gtk.ButtonsType.CLOSE, title='Get - Involved', markup=markup
+ ).run_and_destroy()
+
+
def show_types(parent):
""" Display information about standard data types. """
colors = [(name, color) for name, key, sizeof, color in Constants.CORE_TYPES]
@@ -349,7 +365,7 @@ def show_types(parent):
MessageDialogWrapper(
parent, Gtk.MessageType.INFO, Gtk.ButtonsType.CLOSE, title='Types - Color Mapping', markup=message
- ).run_and_destroy()
+ ).run_and_destroy()
def show_missing_xterm(parent, xterm):