checkGTK                package:RGtk2                R Documentation

_B_o_u_n_d _v_e_r_s_i_o_n_s

_D_e_s_c_r_i_p_t_i_o_n:

     These functions are for querying ('bound'*) and checking
     ('check'*) the bound versions of the libraries (GTK, Pango and
     Cairo).

_U_s_a_g_e:

     checkGTK(version)
     checkPango(version)
     checkCairo(version)
     boundGTKVersion()
     boundPangoVersion()
     boundCairoVersion()

_A_r_g_u_m_e_n_t_s:

 version: Version description to compare to the bound version, as in:
          'compareVersion(boundGTKVersion(), version)'. 

_V_a_l_u_e:

     The 'check'* functions return the result of the comparison as an
     integer, as from 'compareVersion'.

     The 'bound'* functions return a character vector representation of
     the bound library version.

_A_u_t_h_o_r(_s):

     Michael Lawrence

_S_e_e _A_l_s_o:

     'compareVersion'

_E_x_a_m_p_l_e_s:

     checkGTK("2.12.0")
     # same as
     compareVersion(boundGTKVersion(), "2.12.0")

