This is the verbatim text of the qcombo.h include file. It is is provided only for illustration; the copyright remains with Troll Tech.


/**********************************************************************
** $Id: qcombo.h,v 1.6 1995/06/28 17:54:56 agulbra Exp $
**
** Definition of QComboBox class
**
** Author  : Eirik Eng
** Created : 950426
**
** Copyright (C) 1995 by Troll Tech AS.  All rights reserved.
**
***********************************************************************/

#ifndef QCOMBO_H
#define QCOMBO_H

#include "qwidget.h"


class QComboData;
class QStrList;


class QComboBox : public QWidget
{
    Q_OBJECT
public:
    QComboBox( QWidget *parent=0, const char *name=0 );
   ~QComboBox();

    int         count() const;

    void        setStrList( const QStrList * );
    void        setStrList( const char **, int numStrings=-1 );

    void        insertStrList( const QStrList *, int index=-1 );
    void        insertStrList( const char**, int numStrings=-1, int index=-1);

    void        insertItem( const char *string, int index=-1 );
    void        insertItem( const QPixmap &pixmap, int index=-1 );

    void        removeItem( int index );
    void        clear();

    const char *string( int index )     const;
    QPixmap    *pixmap( int index )     const;

    void        changeItem( const char *string, int index );
    void        changeItem( const QPixmap &pixmap, int index );

    void        setCurrentItem( int index );
    int         currentItem()           const;

    void        setAutoResizing( bool );
    bool        autoResizing()          const;
    void        adjustSize();

    void        setBackgroundColor( const QColor & );
    void        setPalette( const QPalette & );
    void        setFont( const QFont & );

signals:
    void        activated( int index );
    void        highlighted( int index );

private slots:
    void        internalActivate( int );
    void        internalHighlight( int );

protected:    
    void        paintEvent( QPaintEvent * );
    void        mousePressEvent( QMouseEvent * );
    void        mouseMoveEvent( QMouseEvent * );
    void        mouseReleaseEvent( QMouseEvent * );
    void        mouseDoubleClickEvent( QMouseEvent * );
    void        keyPressEvent( QKeyEvent *e );

    void        popup();

private:
    void        init();
    void        reIndex();
    void        currentChanged();

    QComboData  *d;
};


#endif // QCOMBOBOX_H


Generated at 16:17, 1995/06/30 by the webmaster at Troll Tech