Changeset 1480

Show
Ignore:
Timestamp:
07/14/08 11:46:57 (6 months ago)
Author:
astormont
Message:

Fixed throbber - #851

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • wine-doors/trunk/src/application.py

    r1469 r1480  
    253253        # Its probably not the best way to do it 
    254254        if not wine.firstrun: 
    255             notify_type = "tilestatus" 
     255            notify_type = DL_TILESTATUS 
    256256            notify_data = (0,) 
    257257        else: 
  • wine-doors/trunk/src/const.py

    r1449 r1480  
    1414 
    1515# Download consts 
    16 ( WIDGET, POPUP, TILESTATUS) = range( 3 ) 
     16( DL_WIDGET, DL_POPUP, DL_TILESTATUS) = range( 3 ) 
    1717 
    1818# View types 
  • wine-doors/trunk/src/utils.py

    r1470 r1480  
    138138                import ui, gobject, gtk 
    139139 
    140         if self.uitype == TILESTATUS: 
     140        if self.uitype == DL_TILESTATUS: 
    141141            status_text = "Downloading: 0 %" 
    142142            try: 
     
    144144            except:  
    145145                self.uitype = None 
    146         elif self.uitype == POPUP: 
     146        elif self.uitype == DL_POPUP: 
    147147            # This feature is useful in some cases, why dont we implement it? 
    148148            #self.wn_downloader = ui.Window( "wn_downloader" ) 
     
    173173            status_text = status_text + " %" 
    174174 
    175             if self.uitype
     175            if self.uitype != None
    176176                try: 
    177177                   ui.benign() 
     
    179179                    import ui, gobject, gtk 
    180180             
    181             if self.uitype == WIDGET: 
     181            if self.uitype == DL_WIDGET: 
    182182                #self.widget.set_text( text_percent + " %" ) 
    183183                #self.widget.set_fraction( percentage ) 
    184184                pass 
    185             elif self.uitype == POPUP: 
     185            elif self.uitype == DL_POPUP: 
    186186                #self.wn_downloader['pb_downloader'].set_text( text_percent + " %" ) 
    187187                #self.wn_downloader['pb_downloader'].set_fraction( percentage ) 
    188188                pass 
    189             elif self.uitype == TILESTATUS: 
     189            elif self.uitype == DL_TILESTATUS: 
    190190                print status_text + "\r", 
    191191                sys.stdout.flush() 
  • wine-doors/trunk/src/winedoors.glade

    r1479 r1480  
    7474            <property name="row_spacing">10</property> 
    7575            <child> 
    76               <widget class="GtkLabel" id="lb_company"> 
    77                 <property name="visible">True</property> 
    78                 <property name="xalign">0</property> 
    79                 <property name="xpad">12</property> 
    80                 <property name="label" translatable="yes">Company name</property> 
    81                 <property name="justify">GTK_JUSTIFY_RIGHT</property> 
    82                 <property name="mnemonic_widget">en_company</property> 
    83               </widget> 
    84               <packing> 
     76              <widget class="GtkEntry" id="en_name"> 
     77                <property name="visible">True</property> 
     78                <property name="can_focus">True</property> 
     79                <property name="invisible_char">•</property> 
     80              </widget> 
     81              <packing> 
     82                <property name="left_attach">1</property> 
     83                <property name="right_attach">2</property> 
     84                <property name="top_attach">1</property> 
     85                <property name="bottom_attach">2</property> 
     86                <property name="y_options"></property> 
     87              </packing> 
     88            </child> 
     89            <child> 
     90              <widget class="GtkEntry" id="en_company"> 
     91                <property name="visible">True</property> 
     92                <property name="can_focus">True</property> 
     93                <property name="invisible_char">•</property> 
     94              </widget> 
     95              <packing> 
     96                <property name="left_attach">1</property> 
     97                <property name="right_attach">2</property> 
    8598                <property name="top_attach">2</property> 
    8699                <property name="bottom_attach">3</property> 
    87                 <property name="x_options">GTK_FILL</property> 
    88100                <property name="y_options"></property> 
    89101              </packing> 
    90102            </child> 
    91103            <child> 
    92               <widget class="GtkLabel" id="lb_name"> 
     104              <widget class="GtkLabel" id="lb_details"> 
    93105                <property name="visible">True</property> 
    94106                <property name="xalign">0</property> 
    95                 <property name="xpad">12</property> 
    96                 <property name="label" translatable="yes">Your name</property> 
    97                 <property name="mnemonic_widget">en_name</property> 
    98                 <property name="single_line_mode">True</property> 
    99               </widget> 
    100               <packing> 
    101                 <property name="top_attach">1</property> 
    102                 <property name="bottom_attach">2</property> 
    103                 <property name="x_options">GTK_FILL</property> 
     107                <property name="label" translatable="yes">&lt;b&gt;Please enter your details&lt;/b&gt;</property> 
     108                <property name="use_markup">True</property> 
     109              </widget> 
     110              <packing> 
     111                <property name="right_attach">2</property> 
     112                <property name="x_options"></property> 
    104113                <property name="y_options"></property> 
    105114              </packing> 
     
    124133            </child> 
    125134            <child> 
    126               <widget class="GtkLabel" id="lb_details"> 
     135              <widget class="GtkLabel" id="lb_name"> 
    127136                <property name="visible">True</property> 
    128137                <property name="xalign">0</property> 
    129                 <property name="label" translatable="yes">&lt;b&gt;Please enter your details&lt;/b&gt;</property> 
    130                 <property name="use_markup">True</property> 
    131               </widget> 
    132               <packing> 
    133                 <property name="right_attach">2</property> 
    134                 <property name="x_options"></property> 
     138                <property name="xpad">12</property> 
     139                <property name="label" translatable="yes">Your name</property> 
     140                <property name="mnemonic_widget">en_name</property> 
     141                <property name="single_line_mode">True</property> 
     142              </widget> 
     143              <packing> 
     144                <property name="top_attach">1</property> 
     145                <property name="bottom_attach">2</property> 
     146                <property name="x_options">GTK_FILL</property> 
    135147                <property name="y_options"></property> 
    136148              </packing> 
    137149            </child> 
    138150            <child> 
    139               <widget class="GtkEntry" id="en_company"> 
    140                 <property name="visible">True</property> 
    141                 <property name="can_focus">True</property> 
    142                 <property name="invisible_char">•</property> 
    143               </widget> 
    144               <packing> 
    145                 <property name="left_attach">1</property> 
    146                 <property name="right_attach">2</property> 
     151              <widget class="GtkLabel" id="lb_company"> 
     152                <property name="visible">True</property> 
     153                <property name="xalign">0</property> 
     154                <property name="xpad">12</property> 
     155                <property name="label" translatable="yes">Company name</property> 
     156                <property name="justify">GTK_JUSTIFY_RIGHT</property> 
     157                <property name="mnemonic_widget">en_company</property> 
     158              </widget> 
     159              <packing> 
    147160                <property name="top_attach">2</property> 
    148161                <property name="bottom_attach">3</property> 
    149                 <property name="y_options"></property> 
    150               </packing> 
    151             </child> 
    152             <child> 
    153               <widget class="GtkEntry" id="en_name"> 
    154                 <property name="visible">True</property> 
    155                 <property name="can_focus">True</property> 
    156                 <property name="invisible_char">•</property> 
    157               </widget> 
    158               <packing> 
    159                 <property name="left_attach">1</property> 
    160                 <property name="right_attach">2</property> 
    161                 <property name="top_attach">1</property> 
    162                 <property name="bottom_attach">2</property> 
     162                <property name="x_options">GTK_FILL</property> 
    163163                <property name="y_options"></property> 
    164164              </packing> 
     
    425425                <property name="row_spacing">10</property> 
    426426                <child> 
    427                   <widget class="GtkLabel" id="label67"> 
    428                     <property name="visible">True</property> 
    429                     <property name="xalign">0</property> 
    430                     <property name="xpad">2</property> 
    431                     <property name="label" translatable="yes">Company name</property> 
    432                     <property name="use_markup">True</property> 
    433                     <property name="justify">GTK_JUSTIFY_RIGHT</property> 
    434                   </widget> 
    435                   <packing> 
     427                  <widget class="GtkEntry" id="en_company1"> 
     428                    <property name="visible">True</property> 
     429                    <property name="can_focus">True</property> 
     430                    <property name="invisible_char">•</property> 
     431                  </widget> 
     432                  <packing> 
     433                    <property name="left_attach">1</property> 
     434                    <property name="right_attach">2</property> 
    436435                    <property name="top_attach">1</property> 
    437436                    <property name="bottom_attach">2</property> 
     437                    <property name="y_options"></property> 
     438                  </packing> 
     439                </child> 
     440                <child> 
     441                  <widget class="GtkEntry" id="en_name1"> 
     442                    <property name="visible">True</property> 
     443                    <property name="can_focus">True</property> 
     444                    <property name="invisible_char">•</property> 
     445                  </widget> 
     446                  <packing> 
     447                    <property name="left_attach">1</property> 
     448                    <property name="right_attach">2</property> 
     449                    <property name="y_options"></property> 
     450                  </packing> 
     451                </child> 
     452                <child> 
     453                  <widget class="GtkCheckButton" id="ck_licensed1"> 
     454                    <property name="visible">True</property> 
     455                    <property name="can_focus">True</property> 
     456                    <property name="label" translatable="yes">I have a valid Microsoft Windows (tm) license</property> 
     457                    <property name="use_underline">True</property> 
     458                    <property name="response_id">0</property> 
     459                    <property name="draw_indicator">True</property> 
     460                  </widget> 
     461                  <packing> 
     462                    <property name="right_attach">2</property> 
     463                    <property name="top_attach">2</property> 
     464                    <property name="bottom_attach">3</property> 
     465                    <property name="x_options">GTK_FILL</property> 
     466                    <property name="y_options"></property> 
     467                  </packing> 
     468                </child> 
     469                <child> 
     470                  <widget class="GtkCheckButton" id="ck_showwinemenu"> 
     471                    <property name="visible">True</property> 
     472                    <property name="can_focus">True</property> 
     473                    <property name="label" translatable="yes">Show Wine Programs menus</property> 
     474                    <property name="use_underline">True</property> 
     475                    <property name="response_id">0</property> 
     476                    <property name="draw_indicator">True</property> 
     477                  </widget> 
     478                  <packing> 
     479                    <property name="right_attach">2</property> 
     480                    <property name="top_attach">3</property> 
     481                    <property name="bottom_attach">4</property> 
    438482                    <property name="x_options">GTK_FILL</property> 
    439483                    <property name="y_options"></property> 
     
    456500                </child> 
    457501                <child> 
    458                   <widget class="GtkCheckButton" id="ck_showwinemenu"> 
    459                     <property name="visible">True</property> 
    460                     <property name="can_focus">True</property> 
    461                     <property name="label" translatable="yes">Show Wine Programs menus</property> 
    462                     <property name="use_underline">True</property> 
    463                     <property name="response_id">0</property> 
    464                     <property name="draw_indicator">True</property> 
    465                   </widget> 
    466                   <packing> 
    467                     <property name="right_attach">2</property> 
    468                     <property name="top_attach">3</property> 
    469                     <property name="bottom_attach">4</property> 
    470                     <property name="x_options">GTK_FILL</property> 
    471                     <property name="y_options"></property> 
    472                   </packing> 
    473                 </child> 
    474                 <child> 
    475                   <widget class="GtkCheckButton" id="ck_licensed1"> 
    476                     <property name="visible">True</property> 
    477                     <property name="can_focus">True</property> 
    478                     <property name="label" translatable="yes">I have a valid Microsoft Windows (tm) license</property> 
    479                     <property name="use_underline">True</property> 
    480                     <property name="response_id">0</property> 
    481                     <property name="draw_indicator">True</property> 
    482                   </widget> 
    483                   <packing> 
    484                     <property name="right_attach">2</property> 
    485                     <property name="top_attach">2</property> 
    486                     <property name="bottom_attach">3</property> 
    487                     <property name="x_options">GTK_FILL</property> 
    488                     <property name="y_options"></property> 
    489                   </packing> 
    490                 </child> 
    491                 <child> 
    492                   <widget class="GtkEntry" id="en_name1"> 
    493                     <property name="visible">True</property> 
    494                     <property name="can_focus">True</property> 
    495                     <property name="invisible_char">•</property> 
    496                   </widget> 
    497                   <packing> 
    498                     <property name="left_attach">1</property> 
    499                     <property name="right_attach">2</property> 
    500                     <property name="y_options"></property> 
    501                   </packing> 
    502                 </child> 
    503                 <child> 
    504                   <widget class="GtkEntry" id="en_company1"> 
    505                     <property name="visible">True</property> 
    506                     <property name="can_focus">True</property> 
    507                     <property name="invisible_char">•</property> 
    508                   </widget> 
    509                   <packing> 
    510                     <property name="left_attach">1</property> 
    511                     <property name="right_attach">2</property> 
     502                  <widget class="GtkLabel" id="label67"> 
     503                    <property name="visible">True</property> 
     504                    <property name="xalign">0</property> 
     505                    <property name="xpad">2</property> 
     506                    <property name="label" translatable="yes">Company name</property> 
     507                    <property name="use_markup">True</property> 
     508                    <property name="justify">GTK_JUSTIFY_RIGHT</property> 
     509                  </widget> 
     510                  <packing> 
    512511                    <property name="top_attach">1</property> 
    513512                    <property name="bottom_attach">2</property> 
     513                    <property name="x_options">GTK_FILL</property> 
    514514                    <property name="y_options"></property> 
    515515                  </packing> 
     
    536536                <property name="row_spacing">10</property> 
    537537                <child> 
    538                   <widget class="GtkLabel" id="label65"> 
    539                     <property name="visible">True</property> 
    540                     <property name="xalign">0</property> 
    541                     <property name="label" translatable="yes">Wine root folder</property> 
    542                     <property name="use_markup">True</property> 
    543                   </widget> 
    544                   <packing> 
    545                     <property name="x_options">GTK_FILL</property> 
     538                  <widget class="GtkFileChooserButton" id="file_wineroot"> 
     539                    <property name="visible">True</property> 
     540                    <property name="action">GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER</property> 
     541                    <property name="show_hidden">True</property> 
     542                    <property name="title" translatable="yes">Select wine root</property> 
     543                  </widget> 
     544                  <packing> 
     545                    <property name="left_attach">1</property> 
     546                    <property name="right_attach">2</property> 
    546547                    <property name="y_options"></property> 
    547                     <property name="x_padding">2</property> 
    548                   </packing> 
    549                 </child> 
    550                 <child> 
    551                   <widget class="GtkCheckButton" id="installedfromreg"> 
     548                  </packing> 
     549                </child> 
     550                <child> 
     551                  <widget class="GtkCheckButton" id="ck_updateonstart"> 
    552552                    <property name="visible">True</property> 
    553553                    <property name="can_focus">True</property> 
    554                     <property name="label" translatable="yes">Display applications installed in the WINE registry</property> 
     554                    <property name="label" translatable="yes">Update package list on startup</property> 
    555555                    <property name="use_underline">True</property> 
    556556                    <property name="response_id">0</property> 
     
    559559                  <packing> 
    560560                    <property name="right_attach">2</property> 
    561                     <property name="top_attach">4</property> 
    562                     <property name="bottom_attach">11</property> 
    563                     <property name="x_options">GTK_FILL</property> 
    564                     <property name="y_options"></property> 
    565                   </packing> 
    566                 </child> 
    567                 <child> 
    568                   <widget class="GtkCheckButton" id="ck_crossover"> 
    569                     <property name="visible">True</property> 
    570                     <property name="can_focus">True</property> 
    571                     <property name="label" translatable="yes">Display applications which require crossover</property> 
    572                     <property name="use_underline">True</property> 
    573                     <property name="response_id">0</property> 
    574                     <property name="draw_indicator">True</property> 
    575                   </widget> 
    576                   <packing> 
    577                     <property name="right_attach">2</property> 
    578                     <property name="top_attach">4</property> 
    579                     <property name="bottom_attach">5</property> 
    580                     <property name="x_options">GTK_FILL</property> 
    581                     <property name="y_options"></property> 
    582                   </packing> 
    583                 </child> 
    584                 <child> 
    585                   <widget class="GtkCheckButton" id="ck_cedega"> 
    586                     <property name="visible">True</property> 
    587                     <property name="can_focus">True</property> 
    588                     <property name="label" translatable="yes">Display applications which only work with cedega</property> 
    589                     <property name="use_underline">True</property> 
    590                     <property name="response_id">0</property> 
    591                     <property name="draw_indicator">True</property> 
    592                   </widget> 
    593                   <packing> 
    594                     <property name="right_attach">2</property> 
    595                     <property name="top_attach">3</property> 
    596                     <property name="bottom_attach">4</property> 
     561                    <property name="top_attach">1</property> 
     562                    <property name="bottom_attach">2</property> 
    597563                    <property name="x_options">GTK_FILL</property> 
    598564                    <property name="y_options"></property> 
     
    618584                </child> 
    619585                <child> 
    620                   <widget class="GtkCheckButton" id="ck_updateonstart"> 
     586                  <widget class="GtkCheckButton" id="ck_cedega"> 
    621587                    <property name="visible">True</property> 
    622588                    <property name="can_focus">True</property> 
    623                     <property name="label" translatable="yes">Update package list on startup</property> 
     589                    <property name="label" translatable="yes">Display applications which only work with cedega</property> 
    624590                    <property name="use_underline">True</property> 
    625591                    <property name="response_id">0</property> 
     
    628594                  <packing> 
    629595                    <property name="right_attach">2</property> 
    630                     <property name="top_attach">1</property> 
    631                     <property name="bottom_attach">2</property> 
     596                    <property name="top_attach">3</property> 
     597                    <property name="bottom_attach">4</property> 
    632598                    <property name="x_options">GTK_FILL</property> 
    633599                    <property name="y_options"></property> 
     
    635601                </child> 
    636602                <child> 
    637                   <widget class="GtkFileChooserButton" id="file_wineroot"> 
    638                     <property name="visible">True</property> 
    639                     <property name="show_hidden">True</property> 
    640                     <property name="action">GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER</property> 
    641                     <property name="title" translatable="yes">Select wine root</property> 
    642                   </widget> 
    643                   <packing> 
    644                     <property name="left_attach">1</property> 
     603                  <widget class="GtkCheckButton" id="ck_crossover"> 
     604                    <property name="visible">True</property> 
     605                    <property name="can_focus">True</property> 
     606                    <property name="label" translatable="yes">Display applications which require crossover</property> 
     607                    <property name="use_underline">True</property> 
     608                    <property name="response_id">0</property> 
     609                    <property name="draw_indicator">True</property> 
     610                  </widget> 
     611                  <packing> 
    645612                    <property name="right_attach">2</property> 
     613                    <property name="top_attach">4</property> 
     614                    <property name="bottom_attach">5</property> 
     615                    <property name="x_options">GTK_FILL</property> 
    646616                    <property name="y_options"></property> 
     617                  </packing> 
     618                </child> 
     619                <child> 
     620                  <widget class="GtkCheckButton" id="installedfromreg"> 
     621                    <property name="visible">True</property> 
     622                    <property name="can_focus">True</property> 
     623                    <property name="label" translatable="yes">Display applications installed in the WINE registry</property> 
     624                    <property name="use_underline">True</property> 
     625                    <property name="response_id">0</property> 
     626                    <property name="draw_indicator">True</property> 
     627                  </widget> 
     628                  <packing> 
     629                    <property name="right_attach">2</property> 
     630                    <property name="top_attach">4</property> 
     631                    <property name="bottom_attach">11</property> 
     632                    <property name="x_options">GTK_FILL</property> 
     633                    <property name="y_options"></property> 
     634                  </packing> 
     635                </child> 
     636                <child> 
     637                  <widget class="GtkLabel" id="label65"> 
     638                    <property name="visible">True</property> 
     639                    <property name="xalign">0</property> 
     640                    <property name="label" translatable="yes">Wine root folder</property> 
     641                    <property name="use_markup">True</property> 
     642                  </widget> 
     643                  <packing> 
     644                    <property name="x_options">GTK_FILL</property> 
     645                    <property name="y_options"></property> 
     646                    <property name="x_padding">2</property> 
    647647                  </packing> 
    648648                </child> 
     
    810810                    <property name="row_spacing">10</property> 
    811811                    <child> 
    812                       <widget class="GtkLabel" id="label198"> 
    813                         <property name="visible">True</property> 
    814                         <property name="xalign">0</property> 
    815                         <property name="xpad">12</property> 
    816                         <property name="label" translatable="yes">Password</property> 
    817                         <property name="use_markup">True</property> 
    818                       </widget> 
    819                       <packing> 
    820                         <property name="top_attach">3</property> 
    821                         <property name="bottom_attach">4</property> 
    822                         <property name="x_options">GTK_FILL</property> 
    823                         <property name="y_options"></property> 
    824                       </packing> 
    825                     </child> 
    826                     <child> 
    827                       <widget class="GtkLabel" id="label197"> 
    828                         <property name="visible">True</property> 
    829                         <property name="xalign">0</property> 
    830                         <property name="xpad">12</property> 
    831                         <property name="label" translatable="yes">Username</property> 
    832                         <property name="use_markup">True</property> 
    833                       </widget> 
    834                       <packing> 
    835                         <property name="top_attach">2</property> 
    836                         <property name="bottom_attach">3</property> 
    837                         <property name="x_options">GTK_FILL</property> 
    838                         <property name="y_options"></property> 
    839                       </packing> 
    840                     </child> 
    841                     <child> 
    842                       <widget class="GtkLabel" id="label72"> 
    843                         <property name="visible">True</property> 
    844                         <property name="xalign">0</property> 
    845                         <property name="xpad">12</property> 
    846                         <property name="label" translatable="yes">Repository base URI</property> 
    847                         <property name="use_markup">True</property> 
    848                       </widget> 
    849                       <packing> 
    850                         <property name="top_attach">1</property> 
    851                         <property name="bottom_attach">2</property> 
    852                         <property name="x_options">GTK_FILL</property> 
    853                         <property name="y_options"></property> 
    854                       </packing> 
    855                     </child> 
    856                     <child> 
    857                       <widget class="GtkLabel" id="label71"> 
    858                         <property name="visible">True</property> 
    859                         <property name="xalign">0</property> 
    860                         <property name="xpad">12</property> 
    861                         <property name="label" translatable="yes">Repository Name</property> 
    862                         <property name="use_markup">True</property> 
    863                       </widget> 
    864                       <packing> 
    865                         <property name="x_options">GTK_FILL</property> 
    866                         <property name="y_options"></property> 
    867                       </packing> 
    868                     </child> 
    869                     <child> 
    870                       <widget class="GtkEntry" id="en_repo_name"> 
     812                      <widget class="GtkEntry" id="entry22"> 
    871813                        <property name="visible">True</property> 
    872814                        <property name="can_focus">True</property> 
     
    876818                        <property name="left_attach">1</property> 
    877819                        <property name="right_attach">2</property> 
     820                        <property name="top_attach">3</property> 
     821                        <property name="bottom_attach">4</property> 
     822                        <property name="y_options"></property> 
     823                      </packing> 
     824                    </child> 
     825                    <child> 
     826                      <widget class="GtkEntry" id="entry21"> 
     827                        <property name="visible">True</property> 
     828                        <property name="can_focus">True</property> 
     829                        <property name="invisible_char">•</property> 
     830                      </widget> 
     831                      <packing> 
     832                        <property name="left_attach">1</property> 
     833                        <property name="right_attach">2</property> 
     834                        <property name="top_attach">2</property> 
     835                        <property name="bottom_attach">3</property> 
    878836                        <property name="y_options"></property> 
    879837                      </packing> 
     
    894852                    </child> 
    895853                    <child> 
    896                       <widget class="GtkEntry" id="entry21"> 
     854                      <widget class="GtkEntry" id="en_repo_name"> 
    897855                        <property name="visible">True</property> 
    898856                        <property name="can_focus">True</property> 
     
    902860                        <property name="left_attach">1</property> 
    903861                        <property name="right_attach">2</property> 
     862                        <property name="y_options"></property> 
     863                      </packing> 
     864                    </child> 
     865                    <child> 
     866                      <widget class="GtkLabel" id="label71"> 
     867                        <property name="visible">True</property> 
     868                        <property name="xalign">0</property> 
     869                        <property name="xpad">12</property> 
     870                        <property name="label" translatable="yes">Repository Name</property> 
     871                        <property name="use_markup">True</property> 
     872                      </widget> 
     873                      <packing> 
     874                        <property name="x_options">GTK_FILL</property> 
     875                        <property name="y_options"></property> 
     876                      </packing> 
     877                    </child> 
     878                    <child> 
     879                      <widget class="GtkLabel" id="label72"> 
     880                        <property name="visible">True</property> 
     881                        <property name="xalign">0</property> 
     882                        <property name="xpad">12</property> 
     883                        <property name="label" translatable="yes">Repository base URI</property> 
     884                        <property name="use_markup">True</property> 
     885                      </widget> 
     886                      <packing> 
     887                        <property name="top_attach">1</property> 
     888                        <property name="bottom_attach">2</property> 
     889                        <property name="x_options">GTK_FILL</property> 
     890                        <property name="y_options"></property> 
     891                      </packing> 
     892                    </child> 
     893                    <child> 
     894                      <widget class="GtkLabel" id="label197"> 
     895                        <property name="visible">True</property> 
     896                        <property name="xalign">0</property> 
     897                        <property name="xpad">12</property> 
     898                        <property name="label" translatable="yes">Username</property> 
     899                        <property name="use_markup">True</property> 
     900                      </widget> 
     901                      <packing> 
    904902                        <property name="top_attach">2</property> 
    905903                        <property name="bottom_attach">3</property> 
     904                        <property name="x_options">GTK_FILL</property> 
    906905                        <property name="y_options"></property> 
    907906                      </packing> 
    908907                    </child> 
    909908                    <child> 
    910                       <widget class="GtkEntry" id="entry22"> 
    911                         <property name="visible">True</property> 
    912                         <property name="can_focus">True</property> 
    913                         <property name="invisible_char">•</property> 
     909                      <widget class="GtkLabel" id="label198"> 
     910                        <property name="visible">True</property> 
     911                        <property name="xalign">0</property> 
     912                        <property name="xpad">12</property> 
     913                        <property name="label" translatable="yes">Password</property> 
     914                        <property name="use_markup">True</property> 
    914915                      </widget> 
    915916                      <packing> 
    916                         <property name="left_attach">1</property> 
    917                         <property name="right_attach">2</property> 
    918917                        <property name="top_attach">3</property> 
    919918                        <property name="bottom_attach">4</property> 
     919                        <property name="x_options">GTK_FILL</property> 
    920920                        <property name="y_options"></property> 
    921921                      </packing> 
     
    950950                <property name="row_spacing">10</property> 
    951951                <child> 
    952                   <widget class="GtkLabel" id="label85"> 
    953                     <property name="visible">True</property> 
    954                     <property name="xalign">0</property> 
    955                     <property name="yalign">0.46000000834465027</property> 
    956                     <property name="xpad">12</property> 
    957                     <property name="label" translatable="yes">Windows Version </property> 
    958                     <property name="use_markup">True</property> 
    959                   </widget> 
    960                   <packing> 
    961                     <property name="x_options">GTK_FILL</property> 
    962                     <property name="y_options"></property> 
    963                   </packing> 
    964                 </child> 
    965                 <child> 
    966                   <widget class="GtkLabel" id="label86"> 
    967                     <property name="visible">True</property> 
    968                     <property name="xalign">0</property> 
    969                     <property name="xpad">12</property> 
    970                     <property name="label" translatable="yes">Wine Version</property> 
    971                     <property name="use_markup">True</property> 
    972                   </widget> 
    973                   <packing> 
    974                     <property name="top_attach">1</property> 
    975                     <property name="bottom_attach">2</property> 
    976                     <property name="x_options">GTK_FILL</property> 
    977                     <property name="y_options"></property> 
    978                   </packing> 
    979                 </child> 
    980                 <child> 
    981                   <widget class="GtkLabel" id="label87"> 
    982                     <property name="visible">True</property> 
    983                     <property name="xalign">0</property> 
    984                     <property name="xpad">12</property> 
    985                     <property name="label" translatable="yes">Posix Threads</property> 
    986                     <property name="use_markup">True</property> 
    987                   </widget> 
    988                   <packing> 
     952                  <widget class="GtkComboBox" id="cb_pthreads"> 
     953                    <property name="visible">True</property> 
     954                    <property name="items" translatable="yes">Enabled