Thread: [Gambas-devel-svn] SF.net SVN: gambas: [437] 2.0/trunk (Page 8)
Brought to you by:
gambas
From: <ga...@us...> - 2007-07-11 14:02:53
|
Revision: 437 http://svn.sourceforge.net/gambas/?rev=437&view=rev Author: gambas Date: 2007-07-11 07:02:56 -0700 (Wed, 11 Jul 2007) Log Message: ----------- [GB.FORM.MDI] * NEW: The MDI tabstrip got a menu that allows to select the current MDI tab. [GB.FORM.DIALOG] * NEW: This reimplementation of the Dialog class was removed from the gb.form component and put in this new component. This way, you can use the gb.form component and keep the default standard dialogs. [GB.QT] * NEW: The TextEdit.Line property has been removed. [GB.GTK] * BUG: The gPicture class should be correctly used everywhere now. * NEW: The Window Activate and Deactivate events have been implemented, and works almost the same way as in gb.qt. * NEW: TextArea now works like in gb.qt. * NEW: TextEdit has been implemented. It is not really useful at the moment: HTML is not understood, and formatting properties have not been implemented. * BUG: ComboBox has been fixed. gComboBox now inherits gTextBox. * BUG: Many fixes in GridView. Row selection now works almost as in gb.qt. * OPT: Some optimizations in GridView drawing. * NEW: Font.Height() argument is optional now. * BUG: Destroying the same menu twice is now impossible. * NEW: TextBox and TextArea selection interface is now the same as in gb.qt. * BUG: The Image.Depth property is now read-only. Modified Paths: -------------- 2.0/trunk/app/src/gambas-database-manager/.lang/.pot 2.0/trunk/app/src/gambas-database-manager/FAbout.class 2.0/trunk/app/src/gambas-database-manager/FAbout.form 2.0/trunk/app/src/gambas-database-manager/FData.form 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.project 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/app/src/gambas2/FAbout.form 2.0/trunk/comp/src/gb.form/.info 2.0/trunk/comp/src/gb.form/.lang/.pot 2.0/trunk/comp/src/gb.form/.list 2.0/trunk/comp/src/gb.form.mdi/.info 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.class 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.form 2.0/trunk/comp/src/gb.form.mdi/Workspace.class 2.0/trunk/comp/src/order 2.0/trunk/gb.gtk/src/CButton.cpp 2.0/trunk/gb.gtk/src/CButton.h 2.0/trunk/gb.gtk/src/CDrawingArea.cpp 2.0/trunk/gb.gtk/src/CDrawingArea.h 2.0/trunk/gb.gtk/src/CFont.cpp 2.0/trunk/gb.gtk/src/CGridView.cpp 2.0/trunk/gb.gtk/src/CMenu.cpp 2.0/trunk/gb.gtk/src/CMenu.h 2.0/trunk/gb.gtk/src/CPicture.cpp 2.0/trunk/gb.gtk/src/CScreen.cpp 2.0/trunk/gb.gtk/src/CTabStrip.cpp 2.0/trunk/gb.gtk/src/CTextArea.cpp 2.0/trunk/gb.gtk/src/CTextArea.h 2.0/trunk/gb.gtk/src/CTextBox.cpp 2.0/trunk/gb.gtk/src/CWidget.cpp 2.0/trunk/gb.gtk/src/CWindow.cpp 2.0/trunk/gb.gtk/src/CWindow.h 2.0/trunk/gb.gtk/src/gapplication.cpp 2.0/trunk/gb.gtk/src/gapplication.h 2.0/trunk/gb.gtk/src/gb.gtk.component 2.0/trunk/gb.gtk/src/gcombobox.cpp 2.0/trunk/gb.gtk/src/gcombobox.h 2.0/trunk/gb.gtk/src/gcontrol.cpp 2.0/trunk/gb.gtk/src/gcontrol.h 2.0/trunk/gb.gtk/src/gdesktop.cpp 2.0/trunk/gb.gtk/src/ggridview.cpp 2.0/trunk/gb.gtk/src/gmainwindow.cpp 2.0/trunk/gb.gtk/src/gmainwindow.h 2.0/trunk/gb.gtk/src/gmenu.cpp 2.0/trunk/gb.gtk/src/gpicture.cpp 2.0/trunk/gb.gtk/src/gshare.h 2.0/trunk/gb.gtk/src/gsignals.cpp 2.0/trunk/gb.gtk/src/gtextarea.cpp 2.0/trunk/gb.gtk/src/gtextarea.h 2.0/trunk/gb.gtk/src/gtextbox.cpp 2.0/trunk/gb.gtk/src/gtextbox.h 2.0/trunk/gb.gtk/src/main.cpp 2.0/trunk/gb.gtk/src/tablerender.cpp 2.0/trunk/gb.gtk/src/tablerender.h 2.0/trunk/gb.gtk/src/widgets.h 2.0/trunk/gb.qt/share/gb.form.properties.h 2.0/trunk/gb.qt/src/CTextArea.cpp 2.0/trunk/gb.qt/src/CTextBox.cpp 2.0/trunk/gb.qt/src/CWindow.h 2.0/trunk/gb.qt/src/share/CDrawingArea_desc.h Added Paths: ----------- 2.0/trunk/comp/src/gb.form.dialog/ 2.0/trunk/comp/src/gb.form.dialog/.directory 2.0/trunk/comp/src/gb.form.dialog/.icon.png 2.0/trunk/comp/src/gb.form.dialog/.project 2.0/trunk/comp/src/gb.form.dialog/Dialog.class 2.0/trunk/comp/src/gb.form.dialog/FDirDialog.class 2.0/trunk/comp/src/gb.form.dialog/FDirDialog.form 2.0/trunk/comp/src/gb.form.dialog/FFileDialog.class 2.0/trunk/comp/src/gb.form.dialog/FFileDialog.form 2.0/trunk/comp/src/gb.form.dialog/Main.module Removed Paths: ------------- 2.0/trunk/comp/src/gb.form/Dialog.class 2.0/trunk/comp/src/gb.form/FDirDialog.class 2.0/trunk/comp/src/gb.form/FDirDialog.form 2.0/trunk/comp/src/gb.form/FFileDialog.class 2.0/trunk/comp/src/gb.form/FFileDialog.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-13 17:48:21
|
Revision: 440 http://svn.sourceforge.net/gambas/?rev=440&view=rev Author: gambas Date: 2007-07-13 10:48:19 -0700 (Fri, 13 Jul 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Ensure that every node is expanded in the form hierarchy window. [GB.QT] * NEW: UserControl has a new _AutoResize hidden property. * BUG: TabStrip[].Picture returns the correct tab picture now. [GB.GTK] * BUG: GridView.EnsureVisible has been fixed. * NEW: Writing to Control.Previous and Control.Next has been implemented. * BUG: Control.Visible now behaves the same way as in gb.qt. It means that gControl::isVisible() returns if a control is not explicitely hidden. * BUG: GridView selection behaviour has been fixed. * OPT: The GridView repaint routine now draws only the cells that need to be redrawn. * BUG: ClientWidth and ClientHeight properties now force the container to update its layout, so that the return values are correct. * BUG: Window does not raise Move or Resize events anymore before the Open event has been raised. * BUG: The background of void GridView cells is drawn correctly now. * NEW: UserControl has a new _AutoResize hidden property. * NEW: GridView.Rows.Unselect has been implemented. Modified Paths: -------------- 2.0/trunk/app/src/gambas-database-manager/.lang/.pot 2.0/trunk/app/src/gambas-database-manager/FData.class 2.0/trunk/app/src/gambas-database-manager/FTable.class 2.0/trunk/app/src/gambas-database-manager/FTable.form 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FAbout.form 2.0/trunk/app/src/gambas2/FFormStack.class 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/app/src/gambas2/FMain.form 2.0/trunk/app/src/gambas2/FProperty.form 2.0/trunk/comp/src/gb.db.form/.lang/.pot 2.0/trunk/comp/src/gb.db.form/DataCombo.class 2.0/trunk/comp/src/gb.db.form/DataView.class 2.0/trunk/comp/src/gb.db.form/FBrowser.form 2.0/trunk/examples/examples/Database/Database/.project 2.0/trunk/gb.gtk/src/CContainer.cpp 2.0/trunk/gb.gtk/src/CGridView.cpp 2.0/trunk/gb.gtk/src/CWidget.cpp 2.0/trunk/gb.gtk/src/gcontainer.cpp 2.0/trunk/gb.gtk/src/gcontrol.cpp 2.0/trunk/gb.gtk/src/gcontrol.h 2.0/trunk/gb.gtk/src/gframe.cpp 2.0/trunk/gb.gtk/src/ggridview.cpp 2.0/trunk/gb.gtk/src/ggridview.h 2.0/trunk/gb.gtk/src/gmainwindow.cpp 2.0/trunk/gb.gtk/src/gscrollview.cpp 2.0/trunk/gb.gtk/src/gscrollview.h 2.0/trunk/gb.gtk/src/gtabstrip.cpp 2.0/trunk/gb.gtk/src/gtools.cpp 2.0/trunk/gb.gtk/src/gtools.h 2.0/trunk/gb.gtk/src/tablerender.cpp 2.0/trunk/gb.gtk/src/tablerender.h 2.0/trunk/gb.qt/share/gb.form.arrangement.h 2.0/trunk/gb.qt/src/CMenu.cpp 2.0/trunk/gb.qt/src/CTabStrip.cpp 2.0/trunk/gb.qt/src/share/CContainer_desc.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-14 11:52:29
|
Revision: 441 http://svn.sourceforge.net/gambas/?rev=441&view=rev Author: gambas Date: 2007-07-14 04:52:26 -0700 (Sat, 14 Jul 2007) Log Message: ----------- [GB.GTK] * BUG: Fixed memory leaks in Window, TabStrip and IconView. * NEW: Removed some GtkMae specific GridView properties. * BUG: Embedded Window now raises the Close event correctly. [GB.DESKTOP] * NEW: This component now is written in C with a Gambas part. Modified Paths: -------------- 2.0/trunk/Makefile.am 2.0/trunk/TEMPLATE/README 2.0/trunk/acinclude.m4 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/comp/src/order 2.0/trunk/configure.ac 2.0/trunk/examples/examples/Basic/DragNDrop/.project 2.0/trunk/examples/examples/Database/Database/FMain.class 2.0/trunk/examples/examples/Database/PictureDatabase/.project 2.0/trunk/examples/examples/Database/PictureDatabase/FormPictureDatabase.class 2.0/trunk/examples/examples/Drawing/OnScreenDisplay/.icon.png 2.0/trunk/examples/examples/Drawing/OnScreenDisplay/.project 2.0/trunk/examples/examples/Drawing/OnScreenDisplay/FOnScreenDisplay.form 2.0/trunk/examples/examples/Games/BeastScroll/.project 2.0/trunk/examples/examples/Games/BeastScroll/MMain.module 2.0/trunk/examples/examples/Games/Snake/.project 2.0/trunk/examples/examples/Games/Snake/FrmMain.class 2.0/trunk/examples/examples/Games/Snake/FrmMain.form 2.0/trunk/examples/examples/Misc/Notepad/FNotepad.class 2.0/trunk/examples/examples/Printing/Printing/.project 2.0/trunk/examples/examples/Sound/MusicPlayer/.icon.png 2.0/trunk/examples/examples/Sound/MusicPlayer/.project 2.0/trunk/examples/examples/Sound/MusicPlayer/FSoundPlayer.form 2.0/trunk/gb.gtk/src/CGridView.cpp 2.0/trunk/gb.gtk/src/CWindow.cpp 2.0/trunk/gb.gtk/src/CWindow.h 2.0/trunk/gb.gtk/src/gbutton.cpp 2.0/trunk/gb.gtk/src/gdrawingarea.cpp 2.0/trunk/gb.gtk/src/giconview.cpp 2.0/trunk/gb.gtk/src/giconview.h 2.0/trunk/gb.gtk/src/gmainwindow.cpp 2.0/trunk/gb.gtk/src/gmainwindow.h 2.0/trunk/gb.gtk/src/gshare.h 2.0/trunk/gb.gtk/src/gsignals.cpp 2.0/trunk/gb.gtk/src/gtabstrip.cpp 2.0/trunk/gb.gtk/src/gtabstrip.h 2.0/trunk/gb.gtk/src/gtree.cpp 2.0/trunk/gb.gtk/src/gtree.h Added Paths: ----------- 2.0/trunk/TEMPLATE/conf/gb.desktop.conf 2.0/trunk/gb.desktop/ 2.0/trunk/gb.desktop/AUTHORS 2.0/trunk/gb.desktop/COPYING 2.0/trunk/gb.desktop/ChangeLog 2.0/trunk/gb.desktop/INSTALL 2.0/trunk/gb.desktop/Makefile.am 2.0/trunk/gb.desktop/NEWS 2.0/trunk/gb.desktop/README 2.0/trunk/gb.desktop/acinclude.m4 2.0/trunk/gb.desktop/component.am 2.0/trunk/gb.desktop/config.guess 2.0/trunk/gb.desktop/config.sub 2.0/trunk/gb.desktop/configure.ac 2.0/trunk/gb.desktop/gambas.h 2.0/trunk/gb.desktop/gb_common.h 2.0/trunk/gb.desktop/ltmain.sh 2.0/trunk/gb.desktop/reconf 2.0/trunk/gb.desktop/src/ 2.0/trunk/gb.desktop/src/Makefile.am 2.0/trunk/gb.desktop/src/gb.desktop/ 2.0/trunk/gb.desktop/src/gb.desktop/.component 2.0/trunk/gb.desktop/src/gb.desktop/.directory 2.0/trunk/gb.desktop/src/gb.desktop/.icon.png 2.0/trunk/gb.desktop/src/gb.desktop/.info 2.0/trunk/gb.desktop/src/gb.desktop/.list 2.0/trunk/gb.desktop/src/gb.desktop/.project 2.0/trunk/gb.desktop/src/gb.desktop/.settings 2.0/trunk/gb.desktop/src/gb.desktop/Desktop.class 2.0/trunk/gb.desktop/src/gb.desktop/DesktopFile.class 2.0/trunk/gb.desktop/src/gb.desktop/Main.module 2.0/trunk/gb.desktop/src/gb.desktop/_DesktopIcons.class 2.0/trunk/gb.desktop/src/gb.desktop/_DesktopMenus.class 2.0/trunk/gb.desktop/src/gb.desktop/_DesktopScreenSaver.class 2.0/trunk/gb.desktop/src/gb.desktop/xdg-utils-1.0.1/ 2.0/trunk/gb.desktop/src/gb.desktop.component 2.0/trunk/gb.desktop/src/main.c 2.0/trunk/gb.desktop/src/main.h Removed Paths: ------------- 2.0/trunk/comp/src/gb.desktop/ 2.0/trunk/gb.desktop/src/gb.desktop/.component 2.0/trunk/gb.desktop/src/gb.desktop/.directory 2.0/trunk/gb.desktop/src/gb.desktop/.icon.png 2.0/trunk/gb.desktop/src/gb.desktop/.info 2.0/trunk/gb.desktop/src/gb.desktop/.list 2.0/trunk/gb.desktop/src/gb.desktop/.project 2.0/trunk/gb.desktop/src/gb.desktop/.settings 2.0/trunk/gb.desktop/src/gb.desktop/Desktop.class 2.0/trunk/gb.desktop/src/gb.desktop/DesktopFile.class 2.0/trunk/gb.desktop/src/gb.desktop/Main.module 2.0/trunk/gb.desktop/src/gb.desktop/_DesktopIcons.class 2.0/trunk/gb.desktop/src/gb.desktop/_DesktopMenus.class 2.0/trunk/gb.desktop/src/gb.desktop/_DesktopScreenSaver.class 2.0/trunk/gb.desktop/src/gb.desktop/xdg-utils-1.0.1/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-14 20:51:11
|
Revision: 443 http://svn.sourceforge.net/gambas/?rev=443&view=rev Author: gambas Date: 2007-07-14 13:51:04 -0700 (Sat, 14 Jul 2007) Log Message: ----------- [CONFIGURATION] * BUG: Now components that depends on X11 are always linked against the X11 libraries, and should be disabled correctly if X11 is not installed. [INTERPRETER] * NEW: A new component GB_INFO exported function that implements global component properties. This function receives the name of the property, and must return its value if it can. * NEW: A new API function that allows a component to ask for the value of a property. All loaded components are asked, until one returns the value. [GB.QT] * NEW: Desktop.Find() has been moved to the gb.desktop component. [GB.GTK] * BUG: Tries to connect the default control signals correctly. * BUG: SpinBox.MinValue and SpinBox.MaxValue work correctly now. * NEW: SpinBox.SelectAll() has been implemented. * BUG: Busy cursor works correctly now on SpinBox and TextArea controls. [GB.DESKTOP] * NEW: Desktop.Find() method was moved in this component. Modified Paths: -------------- 2.0/trunk/acinclude.m4 2.0/trunk/examples/examples/Control/Embedder/.project 2.0/trunk/examples/examples/Database/Database/FMain.form 2.0/trunk/gb.desktop/Makefile.am 2.0/trunk/gb.desktop/configure.ac 2.0/trunk/gb.desktop/src/Makefile.am 2.0/trunk/gb.desktop/src/gb.desktop/.info 2.0/trunk/gb.desktop/src/gb.desktop/.project 2.0/trunk/gb.desktop/src/gb.desktop/Desktop.class 2.0/trunk/gb.desktop/src/main.c 2.0/trunk/gb.gtk/src/CSpinBox.cpp 2.0/trunk/gb.gtk/src/gcontrol.cpp 2.0/trunk/gb.gtk/src/gsignals.cpp 2.0/trunk/gb.gtk/src/gspinbox.cpp 2.0/trunk/gb.gtk/src/gspinbox.h 2.0/trunk/gb.gtk/src/gtextarea.cpp 2.0/trunk/gb.gtk/src/gtextbox.cpp 2.0/trunk/gb.gtk/src/main.cpp 2.0/trunk/gb.qt/src/CColor.cpp 2.0/trunk/gb.qt/src/CScreen.cpp 2.0/trunk/gb.qt/src/main.cpp 2.0/trunk/main/gbx/gbx_api.c 2.0/trunk/main/gbx/gbx_component.c 2.0/trunk/main/gbx/gbx_component.h 2.0/trunk/main/gbx/gbx_library.c 2.0/trunk/main/gbx/gbx_library.h 2.0/trunk/main/share/gambas.h 2.0/trunk/main/share/gb_component.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-15 13:39:11
|
Revision: 444 http://svn.sourceforge.net/gambas/?rev=444&view=rev Author: gambas Date: 2007-07-15 06:39:10 -0700 (Sun, 15 Jul 2007) Log Message: ----------- [CONFIGURATION] * BUG: Tried to fix the detection of QT Moc so that it just disables the component, and does not abort. * BUG: Tried to fix the detection of SDL version. [DEVELOPMENT ENVIRONMENT] * NEW: The ESC key should hide the find panel and the console everywhere. [INTERPRETER] * NEW: Application.Daemon is a new boolean property that "daemonize" the current program when set to TRUE. Once the program is "daemonized", the property cannot be set to FALSE. * BUG: Correctly sets the first argument when the executed program is an archive. [GB.QT] * BUG: The TreeView, ListView, ColumnView and IconView now correctly takes the Ascending property into account. You do not have to manage it in the Compare event handler anymore. Modified Paths: -------------- 2.0/trunk/acinclude.m4 2.0/trunk/app/src/gambas-database-manager/.project 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FEditor.class 2.0/trunk/app/src/gambas2/FForm.class 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/comp/src/gb.form/FileView.class 2.0/trunk/examples/examples/Drawing/Sensor/.project 2.0/trunk/examples/examples/Drawing/Sensor/FSensor.form 2.0/trunk/gb.qt/src/CIconView.cpp 2.0/trunk/gb.qt/src/CTreeView.cpp 2.0/trunk/gb.sdl/configure.ac 2.0/trunk/gb.sdl.sound/configure.ac 2.0/trunk/main/gbx/gbx.c 2.0/trunk/main/gbx/gbx_c_application.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-16 12:37:00
|
Revision: 445 http://svn.sourceforge.net/gambas/?rev=445&view=rev Author: gambas Date: 2007-07-16 05:37:01 -0700 (Mon, 16 Jul 2007) Log Message: ----------- [INTERPRETER] * BUG: A daemonized process forks, so its process id changes. In that case, the interpreter now moves its temporary directory according to the new process id. [GB.NET.SMTP] * NEW: The subject now can be any UTF-8 string. [GB.WEB] * BUG: The Request class now resists against query fields with void names. * BUG: The Request class now does nothins when the request method is unknown. It does not assume a POST method by default. Modified Paths: -------------- 2.0/trunk/comp/src/gb.web/.project 2.0/trunk/comp/src/gb.web/Request.module 2.0/trunk/gb.net.smtp/src/CSmtpClient.c 2.0/trunk/gb.net.smtp/src/comm.c 2.0/trunk/gb.net.smtp/src/libsmtp.h 2.0/trunk/gb.net.smtp/src/libsmtp_comm.c 2.0/trunk/gb.net.smtp/src/quoted.c 2.0/trunk/main/gbx/gbx_c_application.c 2.0/trunk/main/gbx/gbx_library.c 2.0/trunk/main/share/gb_file_share.h 2.0/trunk/main/share/gb_file_temp.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-17 16:35:40
|
Revision: 447 http://svn.sourceforge.net/gambas/?rev=447&view=rev Author: gambas Date: 2007-07-17 09:35:40 -0700 (Tue, 17 Jul 2007) Log Message: ----------- [GB.DB] * NEW: The database API has changed, so that the query fill routine knows the database version. All database drivers were updated. [GB.DB.MYSQL] * BUG: Timestamp fields have changed since MySQL 4.1. This is taken into account now. [GB.QT] * NEW: TrayIcon[] has been implemented, as in gb.gtk. [GB.GTK] * BUG: UserControl and UserContainer are not creatable anymore. * NEW: The Window.TopLevel property has been implemented. Modified Paths: -------------- 2.0/trunk/app/src/gambas-database-manager/.project 2.0/trunk/gb.db.firebird/src/main.cpp 2.0/trunk/gb.db.firebird/src/main.h 2.0/trunk/gb.db.mysql/src/main.c 2.0/trunk/gb.db.odbc/src/main.c 2.0/trunk/gb.db.postgresql/src/main.c 2.0/trunk/gb.db.sqlite2/src/main.cpp 2.0/trunk/gb.db.sqlite2/src/main.h 2.0/trunk/gb.db.sqlite3/src/main.cpp 2.0/trunk/gb.db.sqlite3/src/main.h 2.0/trunk/gb.gtk/src/CContainer.cpp 2.0/trunk/gb.gtk/src/CSplitter.cpp 2.0/trunk/gb.gtk/src/CSplitter.h 2.0/trunk/gb.gtk/src/CTrayIcon.cpp 2.0/trunk/gb.gtk/src/CWindow.cpp 2.0/trunk/gb.gtk/src/gtrayicon.cpp 2.0/trunk/gb.qt/share/gb.form.properties.h 2.0/trunk/gb.qt/src/CSplitter.h 2.0/trunk/gb.qt/src/CTrayIcon.cpp 2.0/trunk/gb.qt/src/CTreeView.cpp 2.0/trunk/gb.qt/src/CWindow.cpp 2.0/trunk/main/lib/db/CResult.c 2.0/trunk/main/lib/db/gb.db.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-21 21:22:39
|
Revision: 458 http://svn.sourceforge.net/gambas/?rev=458&view=rev Author: gambas Date: 2007-07-21 14:22:32 -0700 (Sat, 21 Jul 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: The welcome dialog now respects system color settings. * NEW: Moving to an event handler from the form editor is more clever. [GB.GTK] * NEW: Action properties were implemented. [GB.WEB] * NEW: Session timeout is now stored in the session file. Modified Paths: -------------- 2.0/trunk/TODO 2.0/trunk/app/src/gambas-database-manager/.project 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/CClassInfo.class 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/app/src/gambas2/FEditor.class 2.0/trunk/app/src/gambas2/FOpenProject.class 2.0/trunk/app/src/gambas2/FOpenProject.form 2.0/trunk/app/src/gambas2/FWelcome.class 2.0/trunk/app/src/gambas2/FWelcome.form 2.0/trunk/comp/src/gb.form.mdi/FMain.class 2.0/trunk/comp/src/gb.form.mdi/FMain.form 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.form 2.0/trunk/comp/src/gb.form.mdi/Form1.class 2.0/trunk/comp/src/gb.web/.info 2.0/trunk/comp/src/gb.web/.project 2.0/trunk/comp/src/gb.web/Session.module 2.0/trunk/gb.gtk/src/CButton.cpp 2.0/trunk/gb.gtk/src/CMenu.cpp 2.0/trunk/gb.gtk/src/CWidget.cpp 2.0/trunk/gb.gtk/src/CWidget.h 2.0/trunk/gb.gtk/src/CWindow.cpp 2.0/trunk/gb.gtk/src/gb.gtk/.info 2.0/trunk/gb.gtk/src/gb.gtk/.list 2.0/trunk/gb.gtk/src/gb.gtk/.project 2.0/trunk/gb.gtk/src/gcontrol.cpp 2.0/trunk/gb.gtk/src/gcontrol.h 2.0/trunk/gb.gtk/src/glabel.cpp 2.0/trunk/gb.gtk/src/gmainwindow.cpp 2.0/trunk/gb.gtk/src/gmainwindow.h 2.0/trunk/gb.qt/src/CTreeView.cpp 2.0/trunk/gb.qt/src/CWidget.cpp 2.0/trunk/gb.qt/src/CWidget.h 2.0/trunk/gb.qt/src/gb.qt/.info 2.0/trunk/gb.qt/src/gb.qt/.list 2.0/trunk/gb.qt/src/gb.qt/.project Added Paths: ----------- 2.0/trunk/gb.gtk/src/gb.gtk/Action.class 2.0/trunk/gb.gtk/src/gb.gtk/_Gtk.module 2.0/trunk/gb.qt/share/gb.form.action.h 2.0/trunk/gb.qt/src/gb.qt/_Qt.module Removed Paths: ------------- 2.0/trunk/gb.gtk/src/gb.gtk/Action.class 2.0/trunk/gb.qt/src/gb.qt/Qt.module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-21 23:27:31
|
Revision: 460 http://svn.sourceforge.net/gambas/?rev=460&view=rev Author: gambas Date: 2007-07-21 16:27:34 -0700 (Sat, 21 Jul 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: Fix the border of welcome dialog ScrollView, since it is now set by default. [GB.QT] * BUG: Removed some spurious GotFocus events when the target control is not visible. [GB.GTK] * BUG: Fix gPicture::setPixel() and gPicture::getPixel() so that transparency is correctly taken into account. * NEW: Menu.Toggle was implemented. * NEW: Menu.Value was implemented. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/FForm.form 2.0/trunk/app/src/gambas2/FWelcome.form 2.0/trunk/app/src/gambas2/img/16/close-window.png 2.0/trunk/app/src/gambas2/img/16/max-window.png 2.0/trunk/comp/src/gb.form.mdi/FMain.form 2.0/trunk/gb.gtk/src/CMenu.cpp 2.0/trunk/gb.gtk/src/gmenu.cpp 2.0/trunk/gb.gtk/src/gmenu.h 2.0/trunk/gb.gtk/src/gpicture.cpp 2.0/trunk/gb.gtk/src/gpicture.h 2.0/trunk/gb.qt/src/CMenu.cpp 2.0/trunk/gb.qt/src/CWidget.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-22 12:15:20
|
Revision: 462 http://svn.sourceforge.net/gambas/?rev=462&view=rev Author: gambas Date: 2007-07-22 05:15:22 -0700 (Sun, 22 Jul 2007) Log Message: ----------- [DATABASE MANAGER] * BUG: When importing a CSV file, the maximum number of columns is 1024. This avoids a possible too long scanning. * BUG: Table type combo-box is disabled in table creation dialog now when it is useless. [GB.DB] * NEW: Connection.Error returns the error code of the last error raised by the underlying database driver. All database drivers were modified to implement this feature. [GB.GTK] * BUG: Desktop.Scale now returns the correct value (half of the default font height). Modified Paths: -------------- 2.0/trunk/app/src/gambas-database-manager/.lang/.pot 2.0/trunk/app/src/gambas-database-manager/.project 2.0/trunk/app/src/gambas-database-manager/FImport.class 2.0/trunk/app/src/gambas-database-manager/FImport.form 2.0/trunk/app/src/gambas-database-manager/FMain.class 2.0/trunk/app/src/gambas-database-manager/FNewTable.class 2.0/trunk/app/src/gambas-database-manager/FNewTable.form 2.0/trunk/gb.db.firebird/src/main.cpp 2.0/trunk/gb.db.firebird/src/main.h 2.0/trunk/gb.db.mysql/src/main.c 2.0/trunk/gb.db.odbc/src/main.c 2.0/trunk/gb.db.postgresql/src/main.c 2.0/trunk/gb.db.postgresql/src/main.h 2.0/trunk/gb.db.sqlite2/src/main.cpp 2.0/trunk/gb.db.sqlite2/src/main.h 2.0/trunk/gb.db.sqlite2/src/sqlitedataset.cpp 2.0/trunk/gb.db.sqlite2/src/sqlitedataset.h 2.0/trunk/gb.db.sqlite3/src/main.cpp 2.0/trunk/gb.db.sqlite3/src/main.h 2.0/trunk/gb.db.sqlite3/src/sqlitedataset.cpp 2.0/trunk/gb.db.sqlite3/src/sqlitedataset.h 2.0/trunk/gb.gtk/src/gdesktop.cpp 2.0/trunk/gb.gtk/src/gdesktop.h 2.0/trunk/gb.gtk/src/gtextbox.cpp 2.0/trunk/gb.gtk/src/gtextbox.h 2.0/trunk/main/lib/db/CConnection.c 2.0/trunk/main/lib/db/CResult.h 2.0/trunk/main/lib/db/gb.db.h Added Paths: ----------- 2.0/trunk/gb.db.firebird/gb.db.proto.h 2.0/trunk/gb.db.mysql/gb.db.proto.h 2.0/trunk/gb.db.odbc/gb.db.proto.h 2.0/trunk/gb.db.postgresql/gb.db.proto.h 2.0/trunk/gb.db.sqlite2/gb.db.proto.h 2.0/trunk/gb.db.sqlite3/gb.db.proto.h 2.0/trunk/main/lib/db/gb.db.proto.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-22 19:40:11
|
Revision: 464 http://svn.sourceforge.net/gambas/?rev=464&view=rev Author: gambas Date: 2007-07-22 12:40:14 -0700 (Sun, 22 Jul 2007) Log Message: ----------- [GB.GTK] * NEW: When a window opens without any focus control explicitely set, it gives the focus to the first control in focus order. Button having keyboard shortcuts are ignored. * NEW: ToggleButton.Radio and ToolButton.Radio properties were implemented. * BUG: Do not crash anymore when unregistering the action of a deleted control. Modified Paths: -------------- 2.0/trunk/app/src/gambas-database-manager/.lang/.pot 2.0/trunk/app/src/gambas-database-manager/FImport.form 2.0/trunk/app/src/gambas-database-manager/FNewTable.form 2.0/trunk/app/src/gambas-database-manager/FPassword.class 2.0/trunk/app/src/gambas-database-manager/FPassword.form 2.0/trunk/app/src/gambas-database-manager/FServer.form 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FFontChooser.form 2.0/trunk/app/src/gambas2/FPropertyProject.form 2.0/trunk/gb.gtk/src/CButton.cpp 2.0/trunk/gb.gtk/src/CWidget.cpp 2.0/trunk/gb.gtk/src/gbutton.cpp 2.0/trunk/gb.gtk/src/gbutton.h 2.0/trunk/gb.gtk/src/gcontainer.cpp 2.0/trunk/gb.gtk/src/gcontainer.h 2.0/trunk/gb.gtk/src/gmainwindow.cpp 2.0/trunk/gb.gtk/src/gpicturebox.cpp 2.0/trunk/gb.gtk/src/gtools.cpp 2.0/trunk/gb.qt/share/gb.form.action.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-22 20:53:50
|
Revision: 465 http://svn.sourceforge.net/gambas/?rev=465&view=rev Author: gambas Date: 2007-07-22 13:53:53 -0700 (Sun, 22 Jul 2007) Log Message: ----------- [GB.QT] * BUG: Removed useless Action property overrides. * NEW: The ScrollView Scroll event was implemented. [GB.GTK] * BUG: Fixed a potential memory corruption in the initialization of pictures with alpha mask. * NEW: Hide and Show events of the Menu class were implemented. * BUG: Windows.Controls interface is correctly declared. Modified Paths: -------------- 2.0/trunk/gb.gtk/src/CMenu.cpp 2.0/trunk/gb.gtk/src/CPictureBox.cpp 2.0/trunk/gb.gtk/src/CScrollView.cpp 2.0/trunk/gb.gtk/src/gmenu.cpp 2.0/trunk/gb.gtk/src/gmenu.h 2.0/trunk/gb.gtk/src/gpicture.cpp 2.0/trunk/gb.gtk/src/main.cpp 2.0/trunk/gb.qt/src/CPanel.cpp 2.0/trunk/gb.qt/src/CScrollView.cpp 2.0/trunk/gb.qt/src/CScrollView.h 2.0/trunk/gb.qt/src/CWindow.cpp 2.0/trunk/gb.qt/src/share/CButton_desc.h 2.0/trunk/gb.qt/src/share/CCheckBox_desc.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-22 23:18:57
|
Revision: 468 http://svn.sourceforge.net/gambas/?rev=468&view=rev Author: gambas Date: 2007-07-22 16:18:59 -0700 (Sun, 22 Jul 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * BUG: System icons are correctly stretched in the packager dialog. [INTERPRETER] * BUG: 'gbx2 -e' now flushes its output before quitting. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FMakeInstall.class 2.0/trunk/main/gbx/gbx_subr_misc.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-23 14:03:21
|
Revision: 476 http://svn.sourceforge.net/gambas/?rev=476&view=rev Author: gambas Date: 2007-07-23 07:02:35 -0700 (Mon, 23 Jul 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: The packager wizard ignores the menu and package group steps when the target system is 'autotools'. * BUG: Packager menu and package group tree views are correctly expanded again. [GB.QT] * NEW: Color.Darker is a new method that returns a darker color. * NEW: Color.Lighter is a new method that returns a lighter color. * NEW: Color.Medium is a new method that returns the medium color between two. * BUG: Color[].Alpha returns the Gambas color alpha component correctly. [GB.GTK] * NEW: Color.Darker is a new method that returns a darker color. * NEW: Color.Lighter is a new method that returns a lighter color. * NEW: Color.Medium is a new method that returns the medium color between two. [GB.FORM] * NEW: Disabled wizard steps are ignored now. Modified Paths: -------------- 2.0/trunk/app/src/gambas-database-manager/.project 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FMakeInstall.class 2.0/trunk/app/src/gambas2/FMakeInstall.form 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/comp/src/gb.form/FWizard.class 2.0/trunk/comp/src/gb.form/Wizard.class 2.0/trunk/gb.gtk/src/CColor.cpp 2.0/trunk/gb.qt/src/CColor.cpp 2.0/trunk/gb.qt/src/share/CColor_desc.h 2.0/trunk/main/share/gambas.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-23 22:05:05
|
Revision: 477 http://svn.sourceforge.net/gambas/?rev=477&view=rev Author: gambas Date: 2007-07-23 15:05:00 -0700 (Mon, 23 Jul 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Stock icons are not selectable if the gb.form component is not used. [EXAMPLES] * NEW: A new game example made by Jairo Alonso Badillo Bedoya, imported from Gambas 1.0. [GB.QT] * NEW: TabStrip headers now switch when the mouse wheel is used. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FCreateProject.form 2.0/trunk/app/src/gambas2/FMakeInstall.form 2.0/trunk/app/src/gambas2/FSelectIcon.class 2.0/trunk/app/src/gambas2/FToolBox.class 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/gb.qt/src/CTabStrip.cpp 2.0/trunk/gb.qt/src/CTabStrip.h Added Paths: ----------- 2.0/trunk/examples/examples/Games/Concent/ 2.0/trunk/examples/examples/Games/Concent/.directory 2.0/trunk/examples/examples/Games/Concent/.icon/ 2.0/trunk/examples/examples/Games/Concent/.icon/16.png 2.0/trunk/examples/examples/Games/Concent/.icon/32.png 2.0/trunk/examples/examples/Games/Concent/.icon/48.png 2.0/trunk/examples/examples/Games/Concent/.icon.png 2.0/trunk/examples/examples/Games/Concent/.lang/ 2.0/trunk/examples/examples/Games/Concent/.lang/en.mo 2.0/trunk/examples/examples/Games/Concent/.lang/en.po 2.0/trunk/examples/examples/Games/Concent/.lang/fr.mo 2.0/trunk/examples/examples/Games/Concent/.lang/fr.po 2.0/trunk/examples/examples/Games/Concent/.project 2.0/trunk/examples/examples/Games/Concent/.settings 2.0/trunk/examples/examples/Games/Concent/Blockhit.wav 2.0/trunk/examples/examples/Games/Concent/CHANGELOG 2.0/trunk/examples/examples/Games/Concent/Missed.wav 2.0/trunk/examples/examples/Games/Concent/Newlevel.wav 2.0/trunk/examples/examples/Games/Concent/Paddle.wav 2.0/trunk/examples/examples/Games/Concent/Setup.wav 2.0/trunk/examples/examples/Games/Concent/Wallhit.wav 2.0/trunk/examples/examples/Games/Concent/applause.wav 2.0/trunk/examples/examples/Games/Concent/fotos.class 2.0/trunk/examples/examples/Games/Concent/fotos.form 2.0/trunk/examples/examples/Games/Concent/frmAcerca.class 2.0/trunk/examples/examples/Games/Concent/frmAcerca.form 2.0/trunk/examples/examples/Games/Concent/frmInstrucciones.class 2.0/trunk/examples/examples/Games/Concent/frmInstrucciones.form 2.0/trunk/examples/examples/Games/Concent/funciones.module 2.0/trunk/examples/examples/Games/Concent/imagenes/ 2.0/trunk/examples/examples/Games/Concent/imagenes/an1.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an11.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an12.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an13.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an14.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an15.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an16.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an17.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an18.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an19.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an2.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an20.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an21.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an22.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an23.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an24.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an25.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an26.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an27.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an28.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an29.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an3.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an30.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an31.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an32.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an33.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an34.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an35.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an36.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an37.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an38.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an39.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an4.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an40.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an5.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an6.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an7.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an8.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/an9.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/colombia.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/gambas.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/inter.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/inter.jpg 2.0/trunk/examples/examples/Games/Concent/imagenes/logo.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/logo.png 2.0/trunk/examples/examples/Games/Concent/imagenes/ok.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/tierra.gif 2.0/trunk/examples/examples/Games/Concent/imagenes/tierra3.jpg 2.0/trunk/examples/examples/Games/Concent/move.wav 2.0/trunk/examples/examples/Games/Concent/principal.class 2.0/trunk/examples/examples/Games/Concent/principal.form 2.0/trunk/examples/examples/Games/Concent/shuffle.wav This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-25 00:37:24
|
Revision: 479 http://gambas.svn.sourceforge.net/gambas/?rev=479&view=rev Author: gambas Date: 2007-07-24 17:37:26 -0700 (Tue, 24 Jul 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: The method signature popup does not flicker anymore. [GB.QT] * NEW: CheckBox height now cannot be less that its check-box symbol height or its font height. [GB.FORM.MDI] * NEW: A menu entry in the Workspace popup menu that closes the current tab. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/FEditor.form 2.0/trunk/app/src/gambas2/FOption.form 2.0/trunk/app/src/gambas2/FSave.form 2.0/trunk/app/src/gambas2/FSignature.class 2.0/trunk/app/src/gambas2/FSignature.form 2.0/trunk/app/src/gambas2/FWelcome.class 2.0/trunk/app/src/gambas2/FWelcome.form 2.0/trunk/comp/src/gb.form.mdi/.project 2.0/trunk/comp/src/gb.form.mdi/FMain.class 2.0/trunk/comp/src/gb.form.mdi/FMain.form 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.class 2.0/trunk/comp/src/gb.form.mdi/FWorkspace.form 2.0/trunk/gb.qt/src/CCheckBox.cpp Added Paths: ----------- 2.0/trunk/comp/src/gb.form.mdi/.lang/fr.mo 2.0/trunk/comp/src/gb.form.mdi/.lang/fr.po Removed Paths: ------------- 2.0/trunk/comp/src/gb.form.mdi/FTest.class 2.0/trunk/comp/src/gb.form.mdi/FTest.form 2.0/trunk/comp/src/gb.form.mdi/Form1.class 2.0/trunk/comp/src/gb.form.mdi/Form1.form This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-26 10:55:00
|
Revision: 480 http://gambas.svn.sourceforge.net/gambas/?rev=480&view=rev Author: gambas Date: 2007-07-26 03:55:02 -0700 (Thu, 26 Jul 2007) Log Message: ----------- [DEVELOPMENT ENVIRONMENT] * NEW: Adds an option to show or hide the project tree view balloons. [EXAMPLES] * NEW: Sensor example text shadow is nicer. [GB.QT] * BUG: Picture.Fill() does not modify the picture mask anymore. * NEW: Image.Draw() has now the same syntax as Draw.Image(). [GB.WEB] * NEW: CGI.FormatDate() is a new method to format a date as specified in the RFC 822. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/.lang/fr.mo 2.0/trunk/app/src/gambas2/.lang/fr.po 2.0/trunk/app/src/gambas2/CComponent.class 2.0/trunk/app/src/gambas2/FColorChooser.form 2.0/trunk/app/src/gambas2/FMain.class 2.0/trunk/app/src/gambas2/FOption.class 2.0/trunk/app/src/gambas2/FOption.form 2.0/trunk/app/src/gambas2/Package.module 2.0/trunk/app/src/gambas2/Project.module 2.0/trunk/comp/src/gb.web/.component 2.0/trunk/comp/src/gb.web/.info 2.0/trunk/comp/src/gb.web/.project 2.0/trunk/comp/src/gb.web/CGI.module 2.0/trunk/comp/src/gb.web/Response.module 2.0/trunk/examples/examples/Drawing/Sensor/.icon.png 2.0/trunk/examples/examples/Drawing/Sensor/.project 2.0/trunk/examples/examples/Drawing/Sensor/FSensor.class 2.0/trunk/gb.qt/src/CImage.cpp 2.0/trunk/gb.qt/src/CPicture.cpp Added Paths: ----------- 2.0/trunk/examples/examples/Drawing/Sensor/.lang/fr.mo 2.0/trunk/examples/examples/Drawing/Sensor/.lang/fr.po This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-26 16:06:31
|
Revision: 482 http://gambas.svn.sourceforge.net/gambas/?rev=482&view=rev Author: gambas Date: 2007-07-26 09:06:33 -0700 (Thu, 26 Jul 2007) Log Message: ----------- [GB.QT] * BUG: Image.Rotate() angle is now in radian, not in degree anymore. And the rotation is clockwise now. [GB.GTK] * NEW: Image.Rotate() was implemented. * BUG: Fixed a bug related to action unregistering at menu deletion. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/FWelcome.class 2.0/trunk/gb.gtk/src/CMenu.cpp 2.0/trunk/gb.gtk/src/CPicture.cpp 2.0/trunk/gb.gtk/src/CWidget.cpp 2.0/trunk/gb.gtk/src/gcursor.h 2.0/trunk/gb.gtk/src/gmenu.cpp 2.0/trunk/gb.gtk/src/gmenu.h 2.0/trunk/gb.gtk/src/gpicture.cpp 2.0/trunk/gb.gtk/src/gpicture.h 2.0/trunk/gb.qt/src/CImage.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-26 23:53:54
|
Revision: 484 http://gambas.svn.sourceforge.net/gambas/?rev=484&view=rev Author: gambas Date: 2007-07-26 16:53:53 -0700 (Thu, 26 Jul 2007) Log Message: ----------- [GB.QT] * BUG: The rotation of a transparent image now gives a transparent image. [GB.GTK] * BUG: Draw.Ellipse() does not draw an ellipse one pixel too large and too high anymore. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/FIconEditor.form 2.0/trunk/examples/examples/Drawing/Gravity/FMain.form 2.0/trunk/gb.gtk/src/gdraw.cpp 2.0/trunk/gb.qt/src/CImage.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-07-27 00:53:39
|
Revision: 485 http://gambas.svn.sourceforge.net/gambas/?rev=485&view=rev Author: gambas Date: 2007-07-26 17:53:42 -0700 (Thu, 26 Jul 2007) Log Message: ----------- [EXAMPLES] * NEW: A new PDFViewer example. [GB.GTK] * BUG: Tried to workaround a SpinBox bug that jumps across pages in the new PDFViewer example. Without success at the moment... * BUG: The picture and image hooks were fixed. Modified Paths: -------------- 2.0/trunk/gb.gtk/src/CSpinBox.cpp 2.0/trunk/gb.gtk/src/gpicture.cpp 2.0/trunk/gb.gtk/src/main.cpp Added Paths: ----------- 2.0/trunk/examples/examples/Misc/PDFViewer/ 2.0/trunk/examples/examples/Misc/PDFViewer/.directory 2.0/trunk/examples/examples/Misc/PDFViewer/.icon.png 2.0/trunk/examples/examples/Misc/PDFViewer/.project 2.0/trunk/examples/examples/Misc/PDFViewer/.settings 2.0/trunk/examples/examples/Misc/PDFViewer/FMain.class 2.0/trunk/examples/examples/Misc/PDFViewer/FMain.form 2.0/trunk/examples/examples/Misc/PDFViewer/pdf.png This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2007-08-09 23:20:40
|
Revision: 486 http://gambas.svn.sourceforge.net/gambas/?rev=486&view=rev Author: lordheavy Date: 2007-08-09 16:20:42 -0700 (Thu, 09 Aug 2007) Log Message: ----------- Fix compilation breakage introduce with 'AM_PROG_CC_C_O' macro with automake 1.9.x. Modified Paths: -------------- 2.0/trunk/acinclude.m4 2.0/trunk/main/configure.ac This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-08-13 20:34:23
|
Revision: 487 http://gambas.svn.sourceforge.net/gambas/?rev=487&view=rev Author: gambas Date: 2007-08-13 13:34:26 -0700 (Mon, 13 Aug 2007) Log Message: ----------- Update ChangeLog for 1.9.50 Modified Paths: -------------- 2.0/trunk/ChangeLog 2.0/trunk/gb.gtk/src/gspinbox.cpp 2.0/trunk/gb.gtk/src/gspinbox.h 2.0/trunk/gb.gtk/src/gtextarea.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-08-14 16:18:32
|
Revision: 493 http://gambas.svn.sourceforge.net/gambas/?rev=493&view=rev Author: gambas Date: 2007-08-14 09:18:33 -0700 (Tue, 14 Aug 2007) Log Message: ----------- Forgot some include files in different Makefile.am files. Modified Paths: -------------- 2.0/trunk/gb.gtk/src/Makefile.am 2.0/trunk/gb.opengl/src/Makefile.am 2.0/trunk/main/lib/db/Makefile.am This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-08-15 08:55:47
|
Revision: 494 http://gambas.svn.sourceforge.net/gambas/?rev=494&view=rev Author: gambas Date: 2007-08-15 01:55:50 -0700 (Wed, 15 Aug 2007) Log Message: ----------- [GB.QT] * NEW: gb.qt and gb.gtk now share the description of the control hidden properties used by the IDE. [GB.GTK] * NEW: gb.qt and gb.gtk now share the description of the control hidden properties used by the IDE. Modified Paths: -------------- 2.0/trunk/app/src/gambas2/.lang/.pot 2.0/trunk/app/src/gambas2/FCreateProject.form 2.0/trunk/gb.gtk/src/CButton.cpp 2.0/trunk/gb.gtk/src/CContainer.cpp 2.0/trunk/gb.gtk/src/CDrawingArea.cpp 2.0/trunk/gb.gtk/src/CFrame.cpp 2.0/trunk/gb.gtk/src/CGridView.cpp 2.0/trunk/gb.gtk/src/CIconView.cpp 2.0/trunk/gb.gtk/src/CLabel.cpp 2.0/trunk/gb.gtk/src/CLabel.h 2.0/trunk/gb.gtk/src/CListBox.cpp 2.0/trunk/gb.gtk/src/CMenu.cpp 2.0/trunk/gb.gtk/src/CMouse.cpp 2.0/trunk/gb.gtk/src/CPicture.cpp 2.0/trunk/gb.gtk/src/CPictureBox.cpp 2.0/trunk/gb.gtk/src/CPictureBox.h 2.0/trunk/gb.gtk/src/CProgress.cpp 2.0/trunk/gb.gtk/src/CScrollView.cpp 2.0/trunk/gb.gtk/src/CSeparator.cpp 2.0/trunk/gb.gtk/src/CSlider.cpp 2.0/trunk/gb.gtk/src/CSlider.h 2.0/trunk/gb.gtk/src/CSpinBox.cpp 2.0/trunk/gb.gtk/src/CSplitter.cpp 2.0/trunk/gb.gtk/src/CTabStrip.cpp 2.0/trunk/gb.gtk/src/CTextArea.cpp 2.0/trunk/gb.gtk/src/CTextBox.cpp 2.0/trunk/gb.gtk/src/CTrayIcon.cpp 2.0/trunk/gb.gtk/src/CTreeView.cpp 2.0/trunk/gb.gtk/src/CWidget.cpp 2.0/trunk/gb.gtk/src/gmenu.cpp 2.0/trunk/gb.gtk/src/gmenu.h 2.0/trunk/gb.gtk/src/gpicture.cpp 2.0/trunk/gb.gtk/src/gpicture.h 2.0/trunk/gb.gtk/src/main.cpp 2.0/trunk/gb.qt/share/gb.form.properties.h 2.0/trunk/gb.qt/src/CEmbedder.cpp 2.0/trunk/gb.qt/src/CEmbedder.h 2.0/trunk/gb.qt/src/CFrame.cpp 2.0/trunk/gb.qt/src/CGridView.cpp 2.0/trunk/gb.qt/src/CIconView.cpp 2.0/trunk/gb.qt/src/CLabel.cpp 2.0/trunk/gb.qt/src/CListBox.cpp 2.0/trunk/gb.qt/src/CMovieBox.cpp 2.0/trunk/gb.qt/src/CMovieBox.h 2.0/trunk/gb.qt/src/CPanel.cpp 2.0/trunk/gb.qt/src/CPictureBox.cpp 2.0/trunk/gb.qt/src/CProgress.cpp 2.0/trunk/gb.qt/src/CRadioButton.cpp 2.0/trunk/gb.qt/src/CScrollBar.cpp 2.0/trunk/gb.qt/src/CScrollView.cpp 2.0/trunk/gb.qt/src/CSlider.cpp 2.0/trunk/gb.qt/src/CSpinBox.cpp 2.0/trunk/gb.qt/src/CSplitter.cpp 2.0/trunk/gb.qt/src/CTextArea.cpp 2.0/trunk/gb.qt/src/CTextBox.cpp 2.0/trunk/gb.qt/src/CTrayIcon.cpp 2.0/trunk/gb.qt/src/CTrayIcon.h 2.0/trunk/gb.qt/src/CTreeView.cpp 2.0/trunk/gb.qt/src/share/CButton_desc.h 2.0/trunk/gb.qt/src/share/CCheckBox_desc.h 2.0/trunk/gb.qt/src/share/CContainer_desc.h 2.0/trunk/gb.qt/src/share/CControl_desc.h 2.0/trunk/gb.qt/src/share/CDrawingArea_desc.h 2.0/trunk/gb.qt/src/share/CTabStrip_desc.h 2.0/trunk/main/config.h.in This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ga...@us...> - 2007-08-15 11:23:17
|
Revision: 495 http://gambas.svn.sourceforge.net/gambas/?rev=495&view=rev Author: gambas Date: 2007-08-15 04:23:17 -0700 (Wed, 15 Aug 2007) Log Message: ----------- [EXAMPLES] * NEW: Snake example was update with new icons. [GB.QT] * BUG: Fixed the control description. [GB.GTK] * BUG: Fixed the control description. Modified Paths: -------------- 2.0/trunk/examples/examples/Games/Snake/.icon.png 2.0/trunk/examples/examples/Games/Snake/FrmMain.class 2.0/trunk/examples/examples/Games/Snake/FrmMain.form 2.0/trunk/examples/examples/Games/Snake/apple.png 2.0/trunk/examples/examples/Games/Snake/body.png 2.0/trunk/examples/examples/Games/Snake/head.png 2.0/trunk/gb.gtk/src/CWidget.cpp 2.0/trunk/gb.gtk/src/Makefile.am 2.0/trunk/gb.gtk/src/gmouse.h 2.0/trunk/gb.qt/share/gb.form.properties.h 2.0/trunk/gb.qt/src/share/CControl_desc.h Added Paths: ----------- 2.0/trunk/gb.gtk/src/gmouse.cpp Removed Paths: ------------- 2.0/trunk/examples/examples/Games/Snake/FrmIcon.png This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |