Hello. In my app I need to put three plain textboxes in three tabs, so
I am doing the following. However I'm trying to set the font of the
textboxes via stylesheets but I seem to be doing something wrong --
can anyone help?

Thanks.

Shriramana.

------- code -------

# include <QtGui/QApplication>
# include <QtGui/QPlainTextEdit>
# include <QtGui/QTabWidget>

int main ( int argc, char * argv [] )
{
        QApplication app ( argc, argv ) ;
        app . setStyleSheet ( "QPlainTextEdit { font : \"Gentium Basic\" }" ) ;
        
        QPlainTextEdit * myInput = new QPlainTextEdit ;
        
        QPlainTextEdit * stdOutput = new QPlainTextEdit ;
        stdOutput -> setReadOnly ( true ) ;
        
        QPlainTextEdit * stdError = new QPlainTextEdit ;
        stdError -> setReadOnly ( true ) ;
        
        QTabWidget * tabWidget = new QTabWidget ;
        tabWidget -> addTab ( myInput, "Input" ) ;
        tabWidget -> addTab ( stdOutput, "Output" ) ;
        tabWidget -> addTab ( stdError, "Errors" ) ;

        tabWidget -> show () ;
        return app . exec () ;
}

-- 
Shriramana Sharma
_______________________________________________
Interest mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to