Difference between revisions of "Gambas/libraries"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(explanation of gb.gui)
(qt4)
Line 6: Line 6:
 
* {{l/sub|gb.gui}} uses either {{l/sub|gb.qt}} or {{l/sub|gb.gtk}}, depending on what the desktop is currently using
 
* {{l/sub|gb.gui}} uses either {{l/sub|gb.qt}} or {{l/sub|gb.gtk}}, depending on what the desktop is currently using
 
* {{l/sub|gb.qt}} handles forms under [[Qt]] (default graphical library)
 
* {{l/sub|gb.qt}} handles forms under [[Qt]] (default graphical library)
 +
* {{l/sub|gb.qt4}} same as gb.qt, but specific to version 4 of Qt
 
==Links==
 
==Links==
 
* Documentation: [http://gambasdoc.org/help/comp?v2 version 2], [http://gambasdoc.org/help/comp?v3 version 3]
 
* Documentation: [http://gambasdoc.org/help/comp?v2 version 2], [http://gambasdoc.org/help/comp?v3 version 3]

Revision as of 20:29, 26 April 2015

Libraries are called "components" in the Gambas documentation.

  • gb: internal native classes
  • gb.db handles database operations
  • gb.gtk handles forms under GTK+ (alternate graphical library)
  • gb.gui uses either gb.qt or gb.gtk, depending on what the desktop is currently using
  • gb.qt handles forms under Qt (default graphical library)
  • gb.qt4 same as gb.qt, but specific to version 4 of Qt

Links