File indexing completed on 2024-03-24 04:59:58

0001 /* This file is part of the KDE project
0002 
0003    Copyright (C) 2005 Dario Massarin <nekkar@libero.it>
0004    Copyright (C) 2007 Urs Wolfer <uwolfer @ kde.org>
0005    Copyright (C) 2007 Javier Goday <jgoday @ gmail.com>
0006    Copyright (C) 2010 Matthias Fuchs <mat69@gmx.net>
0007 
0008    This program is free software; you can redistribute it and/or
0009    modify it under the terms of the GNU General Public
0010    License as published by the Free Software Foundation; either
0011    version 2 of the License, or (at your option) any later version.
0012 */
0013 
0014 #ifndef TRANSFERS_GROUP_WIDGET_H
0015 #define TRANSFERS_GROUP_WIDGET_H
0016 
0017 #include "ui_dlggroups.h"
0018 
0019 class TransfersGroupWidget : public QWidget
0020 {
0021     Q_OBJECT
0022 public:
0023     TransfersGroupWidget(QWidget *parent = nullptr);
0024 
0025 private Q_SLOTS:
0026     void slotSelectionChanged();
0027 
0028 private:
0029     Ui::DlgGroups ui;
0030 };
0031 
0032 #endif