mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
/*-*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* $Id: histlistview.h,v 1.1 1998/09/25 18:01:34 ramiro%netscape.com Exp $
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* First version of this file written 1998 by Jonas Utterstrom
|
|
* <mailto:jonas.utterstrom@vittran.norrnod.se>
|
|
*/
|
|
|
|
#ifndef _HIST_LISTVIEW_H_
|
|
#define _HIST_LISTVIEW_H_
|
|
|
|
#include <qlistview.h>
|
|
|
|
class HistoryListView : public QListView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
HistoryListView(QWidget *parent, const char* title);
|
|
virtual void setSorting(int column, bool increasing = true);
|
|
|
|
signals:
|
|
void sortColumnChanged(int, bool);
|
|
};
|
|
|
|
#endif
|