Remmina - The GTK+ Remote Desktop Client  v1.4.33
Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistent user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
Preference-Example

Adds a new tab and/or new preferences onto the Remmina preference dialog.

import remmina
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, GLib
class Pluginpref:
def __init__(self):
# A button to be shown in the preference dialog in Remmina
self.button = None
self.name = "Python pref Plugin"
# The label of the tab on the left side of the preference dialog.
self.pref_label = "Preference Label"
self.type = "pref"
self.description = "Press me!"
self.version = "1.0"
# Prepare the button to be shonw inside the preference tab
self.button = Gtk.Button(label="Click Here")
self.button.connect("clicked", self.on_button_clicked)
def get_pref_body(self):
# Remmina renders the preferences and requests the body of the preference tab.
return self.button
def on_button_clicked(self, btn):
print("Click! :)")
myprefPlugin = Pluginpref()
remmina.register_plugin(myprefPlugin)