inst/examples/coding_tips.r

# # a QFrame object
# QFrame  |   Qt$QFrame()
# 
# methods:
# void    |   setFrameStyle(int style)
#   0 | no frame
#   1 | box
#   2 | panel
#   6 | panel that follows curr GUI style #
#   4 | hline*
#   5 | vline*
#   3 | panel like win2000*
#         * Not tested
#         # implemented
# # a QLabel object
# QLabel | 	Qt$QLabel(const label)
# 
# methods:
# const	| 	alignment
# void	|	setAlignment(alignment)
#   1	 |  Left
#   2  |  Right
#   4  |  Center Horizontally
#   8  |  Justify
#   32 |  Top
#   64 |  Bottom
#   128 | Center Vertically
#   33 | Top-Left
#   
# 
# # a QGridLayout object
# QGridLayout   |   Qt$QGridLayout()
# 
# methods:
# void    |   addWidget(int fromRow, int fromCol, int rowSpan, int colSpan, alignment)
#   1   | left*
#   2   | right*
#   8   | justify*
#   4   | centered horizontally
#   128 | centered vertically 
#   32  | top*
#   64  | bottom*
#   132 | centered both h and v #
#         * not tested
#         # implemented
# 
# 
# void    |   addWidget(int fromRow, int fromCol) # default rowSpan, colSpan = 1    
# 
# # a QSize instance
# QSize   | Qt$QSize(int width, int height)
# 
# # a QanViz::PlotView object
# QanViz::PlotView    |   qplotView(QGraphicsScene scene, void parent, int rescale, boolean opengl)
# 
# methods:
# void    |   setFixedSize(QSize qsize)
# 
# # a QLineEdit object
# QLineEdit  | Qt$QLineEdit(str label)
# 
# methods:
# void	| setFixedWidth(int w) # in pixels
mariev/chromatoplotsgui documentation built on May 21, 2019, 11:46 a.m.