4 * Copyright (C) 2003 Alexander Neundorf <neundorf@kde.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
27 #include <QSocketNotifier>
31 #include "ui_view1394widget.h"
33 #include <libraw1394/raw1394.h>
40 QString
vendor(octlet_t guid
);
42 QMap
<QString
, QString
> m_vendorIds
;
45 class View1394Widget
: public QWidget
, public Ui::View1394Widget
{
47 View1394Widget(QWidget
*parent
) :
53 class View1394
: public KCModule
{
56 View1394(QWidget
*parent
, const QVariantList
&args
);
62 void generateBusReset();
65 View1394Widget
*m_view
;
66 QList
<raw1394handle_t
> m_handles
;
67 QList
<QSocketNotifier
*> m_notifiers
;
68 bool readConfigRom(raw1394handle_t handle
, nodeid_t nodeid
, quadlet_t
& firstQuad
, quadlet_t
& cap
, octlet_t
& guid
);
69 bool m_insideRescanBus
;
73 void callRaw1394EventLoop(int fd
);