The complete source code of IdealIRC http://www.idealirc.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
idealirc/Widgets/IListWidget.h

22 lines
413 B

/*
* IdealIRC - Internet Relay Chat client
* Copyright (C) 2021 Tom-Andre Barstad.
* This software is licensed under the Software Attribution License.
* See LICENSE for more information.
*/
#ifndef ILISTWIDGET_H
#define ILISTWIDGET_H
#include <QListWidget>
class IListWidget : public QListWidget
{
public:
IListWidget(QWidget* parent = nullptr);
private:
void loadConfig();
};
#endif // ILISTWIDGET_H