/*
* Copyright (C) 2010 Ixonos Plc.
+ * Copyright (C) 2011-2012 Philipp Spitzer, gregor herrmann
*
* This file is part of ConfClerk.
*
#ifndef SEARCHTAB_H_
#define SEARCHTAB_H_
-#include <QWidget>
+#include <QtGui>
#include "tabcontainer.h"
#include "searchhead.h"
Q_OBJECT
public:
SearchTabContainer(QWidget *aParent);
- virtual ~SearchTabContainer();
+ virtual ~SearchTabContainer() {}
+ bool searchDialogIsVisible() const;
+ int searchResultCount(const QDate& date) const; ///< returns the number of events found on that specific date
+
protected:
virtual void loadEvents( const QDate &aDate, const int aConferenceId );
+
+signals:
+ void searchResultChanged();
+
public slots:
- void searchAgainClicked(); // made it public - to show header when 1.st conf importing is done successfuly
+ void showSearchDialog(bool show=true);
+
private slots:
void searchButtonClicked();