when a new activity is added, don't move more than necessary to show it
[kdebase.git] / runtime / drkonqi / drbugreport.h
blobcf7e642a3d8ec929a643290aa2935efa0fed0725
1 /*****************************************************************
2 * drkonqi - The KDE Crash Handler
4 * Copyright (C) 2000-2003 Hans Petter Bieker <bieker@kde.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 *****************************************************************/
28 #ifndef DRBUGREPORT_H
29 #define DRBUGREPORT_H
31 class KAboutData;
33 #include <kbugreport.h>
35 class DrKBugReport : public KBugReport
37 Q_OBJECT
39 public:
40 /**
41 * Constructor.
43 explicit DrKBugReport(QWidget *parent = 0, bool modal = true,
44 const KAboutData *aboutData = 0);
46 public:
47 /**
48 * Allows the debugger to set the default text in the editor.
50 void setText(const QString &str);
52 protected Q_SLOTS:
53 virtual void accept();
55 private:
56 QString m_startstring;
59 #endif