- Timestamp:
- Dec 25, 2004, 4:28:05 PM (20 years ago)
- Location:
- orxonox/branches/updater
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/updater/src/gui/orxonox_gui_gtk.h
r3275 r3281 99 99 { 100 100 private: 101 int borderwidth; 102 int policy; 101 int borderwidth; //!< The width of The Container Boarder. 102 int policy; //!< The Update Policy of a Container. 103 103 104 104 public: … … 277 277 GtkWidget* item; //!< One Item From a Menu. 278 278 #endif /* HAVE_GTK2 */ 279 va_list itemlist; //! >The list to readin multiple Options.279 va_list itemlist; //!< The list to readin multiple Options. 280 280 281 281 public: … … 332 332 333 333 private: 334 double totalSize; 335 double progress; 334 double totalSize; //!< The total Size of a download Bar 335 double progress; //!< The progress of a Bar. 336 336 #ifdef HAVE_GTK2 337 337 GtkAdjustment* adjustment; -
orxonox/branches/updater/src/gui/orxonox_gui_update.cc
r3275 r3281 41 41 this->updateFrame->setGroupName ("update"); 42 42 this->updateBox = new Box ('v'); 43 #ifdef HAVE_CURL 43 44 44 45 // the Button for autoUpdating … … 54 55 this->updateBox->fill(this->updateDataWindowGetButton()); 55 56 57 #else /* HAVE_CURL */ 58 Label* noCurlLabel = new Label("since you do not have cURL,\nthis option is not availible"); 59 this->updateBox->fill(noCurlLabel); 60 #endif /* HAVE_CURL */ 56 61 this->updateFrame->fill(this->updateBox); 62 57 63 } 58 64 … … 66 72 } 67 73 74 #ifdef HAVE_CURL 68 75 /** 69 76 \brief Creates a window, and all it contains for the Data-update. … … 183 190 #endif /* HAVE_GTK2 */ 184 191 185 #ifdef HAVE_CURL186 192 /** 187 193 \brief The Function Curl calls to write out the File. … … 230 236 231 237 /** 232 \brief T He Curl handle for only one CURL238 \brief The Curl handle for only one CURL (static). 233 239 */ 234 240 CURL* OrxonoxGuiUpdate::curlHandle = NULL;
Note: See TracChangeset
for help on using the changeset viewer.