tests/auto/q3actiongroup/tst_q3actiongroup.cpp
changeset 0 1918ee327afb
child 4 3b1da2848fc7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/auto/q3actiongroup/tst_q3actiongroup.cpp	Mon Jan 11 14:00:40 2010 +0000
@@ -0,0 +1,238 @@
+/****************************************************************************
+**
+** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file.  Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights.  These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+
+#include <QtTest/QtTest>
+
+#include <q3action.h>
+#include <q3mainwindow.h>
+#include <q3toolbar.h>
+#include <qcombobox.h>
+#include <qlist.h>
+#include <qmainwindow.h>
+#include <qmenubar.h>
+#include <q3popupmenu.h>
+#include <qtoolbar.h>
+
+//TESTED_CLASS=
+//TESTED_FILES=qt3support/widgets/q3action.h qt3support/widgets/q3action.cpp
+
+class tst_Q3ActionGroup : public QObject
+{
+    Q_OBJECT
+
+public:
+    tst_Q3ActionGroup();
+    virtual ~tst_Q3ActionGroup();
+
+private slots:
+    void enabledPropagation();
+    void visiblePropagation();
+    void dropDownDeleted();
+    void exclusive();
+
+    void separators();
+};
+
+tst_Q3ActionGroup::tst_Q3ActionGroup()
+{
+}
+
+tst_Q3ActionGroup::~tst_Q3ActionGroup()
+{
+
+}
+
+void tst_Q3ActionGroup::enabledPropagation()
+{
+    Q3ActionGroup testActionGroup( 0 );
+
+    Q3Action* childAction = new Q3Action( &testActionGroup );
+    Q3Action* anotherChildAction = new Q3Action( &testActionGroup );
+    Q3Action* freeAction = new Q3Action(0);
+
+    QVERIFY( testActionGroup.isEnabled() );
+    QVERIFY( childAction->isEnabled() );
+
+    testActionGroup.setEnabled( FALSE );
+    QVERIFY( !testActionGroup.isEnabled() );
+    QVERIFY( !childAction->isEnabled() );
+    QVERIFY( !anotherChildAction->isEnabled() );
+
+    anotherChildAction->setEnabled( FALSE );
+
+    testActionGroup.setEnabled( TRUE );
+    QVERIFY( testActionGroup.isEnabled() );
+    QVERIFY( childAction->isEnabled() );
+    QVERIFY( !anotherChildAction->isEnabled() );
+
+    testActionGroup.setEnabled( FALSE );
+    Q3Action *lastChildAction = new Q3Action(&testActionGroup);
+
+    QVERIFY(!lastChildAction->isEnabled());
+    testActionGroup.setEnabled( TRUE );
+    QVERIFY(lastChildAction->isEnabled());
+
+    freeAction->setEnabled(FALSE);
+    testActionGroup.add(freeAction);
+    QVERIFY(!freeAction->isEnabled());
+    delete freeAction;
+}
+
+void tst_Q3ActionGroup::visiblePropagation()
+{
+    Q3ActionGroup testActionGroup( 0 );
+
+    Q3Action* childAction = new Q3Action( &testActionGroup );
+    Q3Action* anotherChildAction = new Q3Action( &testActionGroup );
+    Q3Action* freeAction = new Q3Action(0);
+
+    QVERIFY( testActionGroup.isVisible() );
+    QVERIFY( childAction->isVisible() );
+
+    testActionGroup.setVisible( FALSE );
+    QVERIFY( !testActionGroup.isVisible() );
+    QVERIFY( !childAction->isVisible() );
+    QVERIFY( !anotherChildAction->isVisible() );
+
+    anotherChildAction->setVisible(FALSE);
+
+    testActionGroup.setVisible( TRUE );
+    QVERIFY( testActionGroup.isVisible() );
+    QVERIFY( childAction->isVisible() );
+
+    QVERIFY( !anotherChildAction->isVisible() );
+
+    testActionGroup.setVisible( FALSE );
+    Q3Action *lastChildAction = new Q3Action(&testActionGroup);
+
+    QVERIFY(!lastChildAction->isVisible());
+    testActionGroup.setVisible( TRUE );
+    QVERIFY(lastChildAction->isVisible());
+
+    freeAction->setVisible(FALSE);
+    testActionGroup.add(freeAction);
+    QVERIFY(!freeAction->isVisible());
+    delete freeAction;
+}
+
+void tst_Q3ActionGroup::exclusive()
+{
+    Q3ActionGroup group( 0, 0, FALSE );
+    QVERIFY( !group.isExclusive() );
+
+    Q3Action* actOne = new Q3Action( &group );
+    actOne->setToggleAction( TRUE );
+    Q3Action* actTwo = new Q3Action( &group );
+    actTwo->setToggleAction( TRUE );
+    Q3Action* actThree = new Q3Action( &group );
+    actThree->setToggleAction( TRUE );
+
+    group.setExclusive( TRUE );
+    QVERIFY( !actOne->isOn() );
+    QVERIFY( !actTwo->isOn() );
+    QVERIFY( !actThree->isOn() );
+
+    actOne->setOn( TRUE );
+    QVERIFY( actOne->isOn() );
+    QVERIFY( !actTwo->isOn() );
+    QVERIFY( !actThree->isOn() );
+
+    actTwo->setOn( TRUE );
+    QVERIFY( !actOne->isOn() );
+    QVERIFY( actTwo->isOn() );
+    QVERIFY( !actThree->isOn() );
+}
+
+void tst_Q3ActionGroup::dropDownDeleted()
+{
+    Q3MainWindow mw;
+    Q3ToolBar *tb = new Q3ToolBar(&mw);
+    Q3ActionGroup *actGroup = new Q3ActionGroup(&mw);
+    actGroup->setUsesDropDown(TRUE);
+    Q3Action *actOne = new Q3Action(actGroup);
+    actOne->setText("test one");
+    Q3Action *actTwo = new Q3Action(actGroup);
+    actTwo->setText("test two");
+    Q3Action *actThree= new Q3Action(actGroup);
+    actThree->setText("test three");
+    actGroup->addTo(tb);
+    QObjectList comboList = tb->queryList("QComboBox");
+    QCOMPARE(comboList.count(), 1);
+    QCOMPARE((int)((QComboBox*)comboList[0])->count(), 3);
+
+    delete actOne;
+    QCOMPARE((int)((QComboBox*)comboList[0])->count(), 2);
+    delete actTwo;
+    QCOMPARE((int)((QComboBox*)comboList[0])->count(), 1);
+    delete actThree;
+    QCOMPARE((int)((QComboBox*)comboList[0])->count(), 0);
+
+    delete actGroup;
+}
+
+void tst_Q3ActionGroup::separators()
+{
+    QMainWindow mw;
+    Q3PopupMenu menu(&mw);
+    Q3ActionGroup actGroup(&mw);
+
+    mw.show();
+
+    Q3Action *action = new Q3Action(&actGroup);
+    action->setText("test one");
+    actGroup.addSeparator();
+
+    actGroup.addTo(&menu);
+    QCOMPARE((int)menu.count(), 2);
+
+    actGroup.removeFrom(&menu);
+    QCOMPARE((int)menu.count(), 0);
+
+    action = new Q3Action(&actGroup);
+    action->setText("test two");
+    actGroup.addTo(&menu);
+    QCOMPARE((int)menu.count(), 3);
+}
+
+QTEST_MAIN(tst_Q3ActionGroup)
+#include "tst_q3actiongroup.moc"
+