Skip to content

Commit

Permalink
New Input Tab
Browse files Browse the repository at this point in the history
Add Input_Devices.module
Add HWmon_coretemp.module
Update position of ComboBox USB, Sound
  • Loading branch information
eloaders committed Feb 4, 2012
1 parent 2dfbc98 commit 1f04288
Show file tree
Hide file tree
Showing 9 changed files with 442 additions and 299 deletions.
238 changes: 123 additions & 115 deletions src/i-nex/.lang/.pot

Large diffs are not rendered by default.

238 changes: 123 additions & 115 deletions src/i-nex/.lang/Finfosys.pot

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions src/i-nex/.lang/HWmon_coretemp.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# /home/michal/Baazar/i-nex/src/i-nex/.src/HWmon_coretemp.module
# Generated by Gambas compiler

# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n""POT-Creation-Date: 2002-11-01 04:27+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

16 changes: 16 additions & 0 deletions src/i-nex/.lang/Input_Devices.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# /home/michal/Baazar/i-nex/src/i-nex/.src/Input_Devices.module
# Generated by Gambas compiler

# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n""POT-Creation-Date: 2002-11-01 04:27+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

12 changes: 7 additions & 5 deletions src/i-nex/.settings
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,21 @@ SearchString=True
[OpenFile]
Active=1
File[1]=".src/Finfosys.form"
File[2]=".src/Finfosys.class:134.40"
File[2]=".src/Finfosys.class:135.52"
File[3]=".src/Global.class:50.56"
File[4]=".src/About.form"
File[5]=".src/About.class:63.30"
File[6]=".src/distrodetect.class:41.7"
File[7]=".src/battery.module:76.57"
File[7]=".src/battery.module:73.50"
File[8]=".src/Disk_Drives.module:68.2"
File[9]=".src/ScreenShot.form"
File[10]=".src/ScreenShot.class:8.10"
File[11]=".src/ScreenShotM.module:2.21"
File[12]=".src/USB_Drives.module:35.93"
File[13]=".src/Asound_Drives.module:13.2"
Count=13
File[12]=".src/USB_Drives.module:28.30"
File[13]=".src/Asound_Drives.module:13.0"
File[14]=".src/HWmon_coretemp.module:3.18"
File[15]=".src/Input_Devices.module:36.50"
Count=15

[Watches]
Count=0
Expand Down
13 changes: 10 additions & 3 deletions src/i-nex/.src/Finfosys.class
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Public Sub Form_Open()
Dim default_display_manager As Boolean = Exist("/etc/X11/default-display-manager")
Dim cpuz0, cpuz1, cpuz2, cpuz3, cpuz4, cpuz5, cpuz6, cpuz7, cpuz8, cpuz9, cpuz10, cpuz11 As String

Finfosys.TabStrip1[9].Visible = False
Debug "Check for Battery"
Object.Call(battery, "_init")
Debug "Check for Usb device plugged"
Object.Call(USB_Drives, "_init")
Expand All @@ -14,7 +14,8 @@ Public Sub Form_Open()
Object.Call(Disk_Drives, "_init_2")
Debug "Check for Drives...."
Object.Call(Disk_Drives, "get_informations")
Debug "End Check Drives"
Debug "Check for Input Drives"
Object.Call(Input_Devices, "_init")
Debug "Check for default display manager"
If default_display_manager = True Then
Label4.Visible = True
Expand Down Expand Up @@ -132,7 +133,7 @@ Public Sub dzwiek()
TextArea18.Text = Asound_Drives.sound_cards
TextBox44.Text = Asound_Drives.Version
Label18.Text = "Codec: " & Asound_Drives.Codec
Label73.Text = "ID: " & Asound_Drives.Id
Label73.Text = "ID: " & Asound_Drives.Id & " "
Label74.Text = "Modules: " & Asound_Drives.Modules
Label77.Text = "HWdep: " & Asound_Drives.hwdep
Label78.Text = "PCM: " & Asound_Drives.pcm
Expand Down Expand Up @@ -567,3 +568,9 @@ Public Sub ComboBox6_Click()
Asound_Drives._get_informations()

End

Public Sub ComboBox7_Click()

Input_Devices._get_informations()

End

0 comments on commit 1f04288

Please sign in to comment.