|
| List< Image > | images = new List<Image>() |
| |
|
| | Login (Builder builder, IntPtr handle) |
| |
Definition at line 14 of file Login.cs.
◆ Login()
| BioGTK.Login.Login |
( |
Builder | builder, |
|
|
IntPtr | handle ) |
|
protected |
Definition at line 50 of file Login.cs.
50 : base(handle)
51 {
52 _builder = builder;
53 builder.Autoconnect(this);
54 App.ApplyStyles(this);
55 this.FocusInEvent += Login_FocusInEvent;
56 this.DeleteEvent += Login_DeleteEvent;
57 cancelBut.ButtonPressEvent += CancelBut_ButtonPressEvent;
58 loginBut.ButtonPressEvent += LoginButton_ButtonPressEvent;
59 portBox.Adjustment = new Adjustment(4064,0,9999,1,1,1);
61 BioLib.OMERO.host =
BioLib.Settings.GetSettings(
"host");
62 BioLib.OMERO.username =
BioLib.Settings.GetSettings(
"username");
63 hostBox.Buffer.Text =
BioLib.OMERO.host;
64 usernameBox.Buffer.Text =
BioLib.OMERO.username;
65 string p =
BioLib.Settings.GetSettings(
"port");
66 if (p != "")
67 {
68 BioLib.OMERO.port = int.Parse(p);
69 portBox.Value =
BioLib.OMERO.port;
70 }
71 }
◆ Create()
| static Login BioGTK.Login.Create |
( |
| ) |
|
|
static |
It creates a new Search object, which is a Gtk.Window, and returns it
- Returns
- A new instance of the Search class.
Definition at line 43 of file Login.cs.
44 {
45 Builder builder = new Builder(new FileStream(System.IO.Path.GetDirectoryName(Environment.ProcessPath) + "/" + "Glade/login.glade", FileMode.Open));
46 return new Login(builder, builder.GetObject("login").Handle);
47 }
◆ IconHeight
| int BioGTK.Login.IconHeight |
|
static |
◆ IconWidth
| int BioGTK.Login.IconWidth |
|
static |
◆ images
| List<Image> BioGTK.Login.images = new List<Image>() |
The documentation for this class was generated from the following file: