BioGTK  6.3.0
A .NET library & program for annotating, editing various microscopy imaging formats using Bioformats supported images. Including whole slide, pyramidal, and series.
Loading...
Searching...
No Matches
BioGTK.Login Class Reference
Inheritance diagram for BioGTK.Login:

Static Public Member Functions

static Login Create ()
 

Public Attributes

List< Image > images = new List<Image>()
 

Static Public Attributes

static int IconWidth
 
static int IconHeight
 

Protected Member Functions

 Login (Builder builder, IntPtr handle)
 

Detailed Description

Definition at line 14 of file Login.cs.

Constructor & Destructor Documentation

◆ 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);
60 BioLib.Settings.Load();
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 }

Member Function Documentation

◆ 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 }

Member Data Documentation

◆ IconHeight

int BioGTK.Login.IconHeight
static

Definition at line 38 of file Login.cs.

◆ IconWidth

int BioGTK.Login.IconWidth
static

Definition at line 37 of file Login.cs.

◆ images

List<Image> BioGTK.Login.images = new List<Image>()

Definition at line 39 of file Login.cs.


The documentation for this class was generated from the following file: