added unfinished section to compile unfinished examples and prototypes

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1858 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2009-12-05 13:42:24 +00:00
parent d975d8bf1f
commit ecac6008bc
39 changed files with 10586 additions and 58 deletions

View file

@ -0,0 +1,84 @@
/****************************************************************
* RShare is distributed under the following license:
*
* Copyright (C) 2006, crypton
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
****************************************************************/
#ifndef _STATISTICDIALOG_H
#define _STATISTICDIALOG_H
#include <QFileDialog>
#include <QDateTime>
#include <QEvent>
#include <QTimer>
#include <gui/Preferences/rsharesettings.h>
#include "gui/mainpage.h"
#include "ui_StatisticDialog.h"
#include "gui/linetypes.h"
/** Redraw graph every 1000ms **/
#define REFRESH_RATE 1000
class StatisticDialog : public MainPage
{
Q_OBJECT
public:
/** Default Constructor */
StatisticDialog(QWidget *parent = 0);
/** Default Destructor */
~StatisticDialog();
protected:
/** Called to deliver a bandwidth update event from RetroShare. */
void customEvent(QEvent *event);
void timerEvent(QTimerEvent*);
private slots:
/** Adds new data to the graph */
void updateGraph(quint64 bytesRead, quint64 bytesWritten);
/** Called when settings button is toggled */
void showSettingsFrame(bool show);
/** Called when the settings button is toggled */
void setOpacity(int value);
/** Called when the user saves settings */
void saveChanges();
/** Called when the user cancels changes settings */
void cancelChanges();
/** Called when the reset button is pressed */
void reset();
private:
/** Create and bind actions to events **/
void createActions();
/** Loads the saved Bandwidth Graph settings */
void loadSettings();
/** A RetroShareSettings object that handles getting/saving settings */
RshareSettings* _settings;
/** Qt Designer generated object */
Ui::StatisticDialog ui;
};
#endif