summaryrefslogtreecommitdiff
path: root/grc/gui/Dialogs.py
diff options
context:
space:
mode:
Diffstat (limited to 'grc/gui/Dialogs.py')
-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):