Home
last modified time | relevance | path

Searched refs:FrontendConfig (Results 1 – 17 of 17) sorted by relevance

/dports/irc/smuxi/smuxi-1.1/src/Frontend-GNOME/
H A DEngineManagerDialog.cs116 Frontend.FrontendConfig["UseLowBandwidthMode"] = in EngineManagerDialog()
118 Frontend.FrontendConfig.Save(); in EngineManagerDialog()
265 Frontend.FrontendConfig in _OnNewButtonPressed()
292 Frontend.FrontendConfig, in _OnEditButtonPressed()
348 Frontend.FrontendConfig.Remove("Engines/"+engine+"/Username"); in _DeleteEngine()
351 Frontend.FrontendConfig.Remove("Engines/"+engine+"/Port"); in _DeleteEngine()
352 Frontend.FrontendConfig.Remove("Engines/"+engine+"/Channel"); in _DeleteEngine()
356 Frontend.FrontendConfig.Remove("Engines/"+engine+"/SshPort"); in _DeleteEngine()
358 Frontend.FrontendConfig.Remove("Engines/"+engine); in _DeleteEngine()
359 Frontend.FrontendConfig.Save(); in _DeleteEngine()
[all …]
H A DMainWindow.cs140 if (Frontend.FrontendConfig[Frontend.UIName + "/Interface/Width"] != null) { in MainWindow()
141 width = (int) Frontend.FrontendConfig[Frontend.UIName + "/Interface/Width"]; in MainWindow()
145 if (Frontend.FrontendConfig[Frontend.UIName + "/Interface/Heigth"] != null) { in MainWindow()
146 heigth = (int) Frontend.FrontendConfig[Frontend.UIName + "/Interface/Heigth"]; in MainWindow()
165 if (Frontend.FrontendConfig[Frontend.UIName + "/Interface/XPosition"] != null) { in MainWindow()
166 x = (int) Frontend.FrontendConfig[Frontend.UIName + "/Interface/XPosition"]; in MainWindow()
170 if (Frontend.FrontendConfig[Frontend.UIName + "/Interface/YPosition"] != null) { in MainWindow()
171 y = (int) Frontend.FrontendConfig[Frontend.UIName + "/Interface/YPosition"]; in MainWindow()
221 EngineManager = new EngineManager(Frontend.FrontendConfig, UI); in MainWindow()
308 StatusHBox.Visible = (bool) Frontend.FrontendConfig["ShowStatusBar"]; in MainWindow()
H A DFrontend.cs51 private static FrontendConfig _FrontendConfig;
157 public static FrontendConfig FrontendConfig { property in Smuxi.Frontend.Gnome.Frontend
206 _FrontendConfig = new FrontendConfig(UIName); in Init()
213 if (((string[]) FrontendConfig["Engines/Engines"]).Length == 0) { in Init()
/dports/irc/smuxi/smuxi-1.1/src/Engine/Config/
H A DUserConfig.cs41 public FrontendConfig FrontendConfig { get; set; } property in Smuxi.Engine.UserConfig
67 if (FrontendConfig != null) {
68 obj = FrontendConfig[key];
148 if (FrontendConfig != null && FrontendConfig[key] != null) { in Set()
170 if (FrontendConfig != null && FrontendConfig[setting.Key] != null) { in SetAll()
H A DFrontendConfig.cs37 public class FrontendConfig : Config class
59 public FrontendConfig(string uiName) : base() in FrontendConfig() method in Smuxi.Engine.FrontendConfig
/dports/irc/smuxi/smuxi-1.1/src/Frontend-Curses/
H A DFrontend.cs48 private static FrontendConfig _FrontendConfig;
122 public static FrontendConfig FrontendConfig { property in Smuxi.Frontend.Curses.Frontend
146 _FrontendConfig = new FrontendConfig(UIName); in Init()
153 if (((string)FrontendConfig["Engines/Default"]).Length == 0) { in Init()
/dports/irc/smuxi/smuxi-1.1/src/Frontend-SWF/
H A DFrontend.cs49 private static FrontendConfig _FrontendConfig;
124 public static FrontendConfig FrontendConfig { property in Smuxi.Frontend.Swf.Frontend
154 _FrontendConfig = new FrontendConfig(UIName); in Init()
162 if (((string)FrontendConfig["Engines/Default"]).Length == 0) { in Init()
/dports/irc/smuxi/smuxi-1.1/src/Frontend-GNOME/Views/
H A DMenuWidget.cs123 f_MenuToolbar.Visible = (bool) Frontend.FrontendConfig["ShowToolBar"]; in MenuWidget()
127 f_MenuBar.Visible = (bool) Frontend.FrontendConfig["ShowMenuBar"]; in MenuWidget()
140 f_ShowMenubarAction.Active = (bool) Frontend.FrontendConfig["ShowMenuBar"]; in MenuWidget()
141 f_ShowToolbarAction.Active = (bool) Frontend.FrontendConfig["ShowToolBar"]; in MenuWidget()
423 Frontend.FrontendConfig in OnAddRemoteEngineActionActivated()
504 Frontend.FrontendConfig["ShowMenuBar"] = active; in OnShowMenubarActionToggled()
505 Frontend.FrontendConfig.Save(); in OnShowMenubarActionToggled()
520 Frontend.FrontendConfig["ShowToolBar"] = active; in OnShowToolbarActionToggled()
521 Frontend.FrontendConfig.Save(); in OnShowToolbarActionToggled()
534 Frontend.FrontendConfig["ShowStatusBar"] = active; in OnShowStatusbarActionToggled()
[all …]
H A DJoinWidget.cs138 var activeNetwork = (string) Frontend.FrontendConfig[ActiveNetworkConfigKey]; in InitNetworks()
145 Frontend.FrontendConfig[ActiveNetworkConfigKey] = ActiveNetwork; in InitNetworks()
146 Frontend.FrontendConfig.Save(); in InitNetworks()
/dports/irc/smuxi/smuxi-1.1/src/Frontend-Test/
H A DFrontend.cs49 private static FrontendConfig _FrontendConfig;
53 public static FrontendConfig FrontendConfig { property in Smuxi.FrontendTest.Frontend
90 _FrontendConfig = new FrontendConfig("Test"); in Init()
/dports/irc/smuxi/smuxi-1.1/src/Frontend-STFL/
H A DFrontend.cs43 private static FrontendConfig _FrontendConfig;
122 public static FrontendConfig FrontendConfig { property in Smuxi.Frontend.Stfl.Frontend
148 _FrontendConfig = new FrontendConfig(UIName); in Init()
H A DMain.cs121 var config = new FrontendConfig(Frontend.UIName); in Main()
/dports/irc/smuxi/smuxi-1.1/src/Frontend/
H A DEngineManager.cs53 private FrontendConfig f_FrontendConfig;
89 public EngineManager(FrontendConfig frontendConfig, IFrontendUI frontendUI) in EngineManager()
337 f_UserConfig.FrontendConfig = f_FrontendConfig; in Connect()
/dports/irc/smuxi/smuxi-1.1/src/Frontend-GNOME/Views/Assistants/Engine/
H A DEngineAssistant.cs34 private FrontendConfig f_Config;
43 public EngineAssistant(Gtk.Window parent, FrontendConfig config) : in EngineAssistant()
49 public EngineAssistant(Gtk.Window parent, FrontendConfig config, in EngineAssistant()
/dports/irc/smuxi/smuxi-1.1/src/Frontend-STFL/Views/
H A DChatView.cs275 …var backgroundColorString = (string)Frontend.FrontendConfig[Frontend.UIName + "/Interface/Terminal… in AddMessage()
/dports/irc/smuxi/smuxi-1.1/src/Engine/
H A DMakefile.am99 Config/FrontendConfig.cs \
H A DMakefile.in444 Config/FrontendConfig.cs \