mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-14 17:07:17 -05:00
fixed licenses in settings
This commit is contained in:
parent
e99c718be9
commit
4375698d1d
@ -1,37 +0,0 @@
|
|||||||
/*******************************************************************************
|
|
||||||
* gui/settings/NetworkPage.cpp *
|
|
||||||
* *
|
|
||||||
* Copyright (C) 2006 Crypton <retroshare.project@gmail.com> *
|
|
||||||
* *
|
|
||||||
* This program is free software: you can redistribute it and/or modify *
|
|
||||||
* it under the terms of the GNU Affero General Public License as *
|
|
||||||
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
||||||
* *
|
|
||||||
* You should have received a copy of the GNU Affero General Public License *
|
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
||||||
* *
|
|
||||||
*******************************************************************************/
|
|
||||||
|
|
||||||
#include "NetworkPage.h"
|
|
||||||
#include "rshare.h"
|
|
||||||
|
|
||||||
NetworkPage::NetworkPage(QWidget * parent, Qt::WindowFlags flags)
|
|
||||||
: ConfigPage(parent, flags)
|
|
||||||
{
|
|
||||||
ui.setupUi(this);
|
|
||||||
setAttribute(Qt::WA_QuitOnClose, false);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Loads the settings for this page */
|
|
||||||
void
|
|
||||||
NetworkPage::load()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
|||||||
/*******************************************************************************
|
|
||||||
* gui/settings/NetworkPage.h *
|
|
||||||
* *
|
|
||||||
* Copyright (C) 2006 Crypton <retroshare.project@gmail.com> *
|
|
||||||
* *
|
|
||||||
* This program is free software: you can redistribute it and/or modify *
|
|
||||||
* it under the terms of the GNU Affero General Public License as *
|
|
||||||
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
|
||||||
* *
|
|
||||||
* You should have received a copy of the GNU Affero General Public License *
|
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
||||||
* *
|
|
||||||
*******************************************************************************/
|
|
||||||
|
|
||||||
#ifndef NETWORKPAGE_H
|
|
||||||
#define NETWORKPAGE_H
|
|
||||||
|
|
||||||
#include <retroshare-gui/configpage.h>
|
|
||||||
#include "ui_NetworkPage.h"
|
|
||||||
|
|
||||||
class NetworkPage : public ConfigPage
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
NetworkPage(QWidget * parent = 0, Qt::WindowFlags flags = 0);
|
|
||||||
~NetworkPage() {}
|
|
||||||
|
|
||||||
/** Loads the settings for this page */
|
|
||||||
virtual void load();
|
|
||||||
|
|
||||||
virtual QPixmap iconPixmap() const { return QPixmap(":/icons/settings/network.svg") ; }
|
|
||||||
virtual QString pageName() const { return tr("Network") ; }
|
|
||||||
|
|
||||||
private:
|
|
||||||
Ui::NetworkPage ui;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // !NETWROKPAGE_H
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<ui version="4.0">
|
|
||||||
<class>NetworkPage</class>
|
|
||||||
<widget class="QWidget" name="NetworkPage">
|
|
||||||
<property name="geometry">
|
|
||||||
<rect>
|
|
||||||
<x>0</x>
|
|
||||||
<y>0</y>
|
|
||||||
<width>398</width>
|
|
||||||
<height>389</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
<resources/>
|
|
||||||
<connections/>
|
|
||||||
</ui>
|
|
@ -1,23 +1,23 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/NewTag.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2009, RetroShre Team
|
* Copyright 2009, Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
#include "NewTag.h"
|
#include "NewTag.h"
|
||||||
|
|
||||||
#include "retroshare/rsmsgs.h"
|
#include "retroshare/rsmsgs.h"
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/NewTag.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2010, RetroShare Team
|
* Copyright 2010, Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef _NEWTAG_H
|
#ifndef _NEWTAG_H
|
||||||
#define _NEWTAG_H
|
#define _NEWTAG_H
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/NotifyPage.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2009 RetroShare Team
|
* Copyright 2009, Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include <rshare.h>
|
#include <rshare.h>
|
||||||
#include "NotifyPage.h"
|
#include "NotifyPage.h"
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/NotifyPage.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2009 RetroShare Team
|
* Copyright 2009, Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef NOTIFYPAGE_H
|
#ifndef NOTIFYPAGE_H
|
||||||
#define NOTIFYPAGE_H
|
#define NOTIFYPAGE_H
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/PeoplePage.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006, crypton
|
* Copyright 2006, Crypton <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include "PeoplePage.h"
|
#include "PeoplePage.h"
|
||||||
#include "util/misc.h"
|
#include "util/misc.h"
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/PeoplePage.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006, crypton
|
* Copyright 2006, Crypton <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef PEOPLEPAGE_H
|
#ifndef PEOPLEPAGE_H
|
||||||
#define PEOPLEPAGE_H
|
#define PEOPLEPAGE_H
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/PluginItem.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2011 Cyril Soler
|
* Copyright 2011, Cyril Soler <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include "PluginItem.h"
|
#include "PluginItem.h"
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/PluginItem.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2011 Cyril Soler
|
* Copyright 2011, Cyril Soler <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/PluginsPage.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006, crypton
|
* Copyright 2006, Crypton <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/PluginsPage.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006, crypton
|
* Copyright 2006, Crypton <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/PostedPage.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2014, RetroShare Team
|
* Copyright 2014 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include "PostedPage.h"
|
#include "PostedPage.h"
|
||||||
#include "ui_PostedPage.h"
|
#include "ui_PostedPage.h"
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/PostedPage.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2014, RetroShare Team
|
* Copyright 2014 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef POSTEDPAGE_H
|
#ifndef POSTEDPAGE_H
|
||||||
#define POSTEDPAGE_H
|
#define POSTEDPAGE_H
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* This file is distributed under the following license:
|
* gui/settings/RSPermissionMatrixWidget.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2014 RetroShare Team
|
* Copyright (c) 2014 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef WINDOWS_SYS
|
#ifndef WINDOWS_SYS
|
||||||
#include <sys/times.h>
|
#include <sys/times.h>
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* This file is distributed under the following license:
|
* gui/settings/RSPermissionMatrixWidget.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2014 RetroShare Team
|
* Copyright (c) 2014 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* This file is distributed under the following license:
|
* gui/settings/RsharePeerSettings.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2010, RetroShare Team
|
* Copyright (c) 2010, Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include <QColor>
|
#include <QColor>
|
||||||
#include <QFont>
|
#include <QFont>
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* This file is distributed under the following license:
|
* gui/settings/RsharePeerSettings.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2010, RetroShare Team
|
* Copyright (c) 2010, Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef _RSHAREPEERSETTINGS_H
|
#ifndef _RSHAREPEERSETTINGS_H
|
||||||
#define _RSHAREPEERSETTINGS_H
|
#define _RSHAREPEERSETTINGS_H
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/ServerPage.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006, crypton
|
* Copyright (c) 2006 Crypton <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include "ServerPage.h"
|
#include "ServerPage.h"
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/ServerPage.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006, crypton
|
* Copyright (c) 2006 Crypton <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef SERVERPAGE_H
|
#ifndef SERVERPAGE_H
|
||||||
#define SERVERPAGE_H
|
#define SERVERPAGE_H
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/ServicePermissionPage.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2010 RetroShare Team
|
* Copyright (c) 2014 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include "ServicePermissionsPage.h"
|
#include "ServicePermissionsPage.h"
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/ServicePermissionPage.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2014 RetroShare Team
|
* Copyright (c) 2014 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef SERVICEPERMISSIONSPAGE_H
|
#ifndef SERVICEPERMISSIONSPAGE_H
|
||||||
#define SERVICEPERMISSIONSPAGE_H
|
#define SERVICEPERMISSIONSPAGE_H
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/SoundPage.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2009 RetroShare Team
|
* Copyright (c) 2009 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include "SoundPage.h"
|
#include "SoundPage.h"
|
||||||
#include "rsharesettings.h"
|
#include "rsharesettings.h"
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/SoundPage.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2009 RetroShare Team
|
* Copyright (c) 2009 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef _SOUNDPAGE_H
|
#ifndef _SOUNDPAGE_H
|
||||||
#define _SOUNDPAGE_H
|
#define _SOUNDPAGE_H
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/TransferPage.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2010 RetroShare Team
|
* Copyright (c) 2010 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include "TransferPage.h"
|
#include "TransferPage.h"
|
||||||
|
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/TransferPage.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2010 RetroShare Team
|
* Copyright (c) 2010 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef TRANSFERPAGE_H
|
#ifndef TRANSFERPAGE_H
|
||||||
# define TRANSFERPAGE_H
|
# define TRANSFERPAGE_H
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
/*******************************************************************************
|
||||||
|
* gui/settings/WebuiPage.cpp *
|
||||||
|
* *
|
||||||
|
* Copyright (c) 2014 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
|
* *
|
||||||
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
||||||
|
* *
|
||||||
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
|
* *
|
||||||
|
*******************************************************************************/
|
||||||
|
|
||||||
#include "WebuiPage.h"
|
#include "WebuiPage.h"
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
/*******************************************************************************
|
||||||
|
* gui/settings/WebuiPage.h *
|
||||||
|
* *
|
||||||
|
* Copyright (c) 2014 Retroshare Team <retroshare.project@gmail.com> *
|
||||||
|
* *
|
||||||
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. *
|
||||||
|
* *
|
||||||
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
|
* *
|
||||||
|
*******************************************************************************/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <retroshare-gui/configpage.h>
|
#include <retroshare-gui/configpage.h>
|
||||||
|
@ -1,24 +1,23 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* This file is distributed under the following license:
|
* gui/settings/rsettings.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (c) 2008, crypton
|
* Copyright (c) 2008, crypton *
|
||||||
* Copyright (c) 2008, Matt Edman, Justin Hipple
|
* Copyright (c) 2008, Matt Edman, Justin Hipple *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include <rshare.h>
|
#include <rshare.h>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
@ -1,24 +1,23 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* This file is distributed under the following license:
|
* gui/settings/rsettings.h *
|
||||||
*
|
* *
|
||||||
* Copyright (c) 2008, crypton
|
* Copyright (c) 2008, crypton *
|
||||||
* Copyright (c) 2008, Matt Edman, Justin Hipple
|
* Copyright (c) 2008, Matt Edman, Justin Hipple *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef _RSETTINGS_H
|
#ifndef _RSETTINGS_H
|
||||||
#define _RSETTINGS_H
|
#define _RSETTINGS_H
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/rsettingswin.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 -2009 RetroShare Team
|
* Copyright (c) 2008, Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
|
||||||
@ -25,7 +24,6 @@
|
|||||||
#include <rshare.h>
|
#include <rshare.h>
|
||||||
#include "GeneralPage.h"
|
#include "GeneralPage.h"
|
||||||
#include "ServerPage.h"
|
#include "ServerPage.h"
|
||||||
#include "NetworkPage.h"
|
|
||||||
#include "NotifyPage.h"
|
#include "NotifyPage.h"
|
||||||
#include "CryptoPage.h"
|
#include "CryptoPage.h"
|
||||||
#include "AppearancePage.h"
|
#include "AppearancePage.h"
|
||||||
|
@ -1,23 +1,22 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* RetroShare is distributed under the following license:
|
* gui/settings/rsettingswin.h *
|
||||||
*
|
* *
|
||||||
* Copyright (C) 2006 - 2009 RetroShare Team
|
* Copyright (c) 2008, Retroshare Team <retroshare.project@gmail.com> *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef RSETTINGSWIN_HPP_
|
#ifndef RSETTINGSWIN_HPP_
|
||||||
#define RSETTINGSWIN_HPP_
|
#define RSETTINGSWIN_HPP_
|
||||||
|
@ -1,24 +1,23 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* This file is distributed under the following license:
|
* gui/settings/rsharesettings.cpp *
|
||||||
*
|
* *
|
||||||
* Copyright (c) 2006-2007, crypton
|
* Copyright (c) 2006-2007, crypton *
|
||||||
* Copyright (c) 2006, Matt Edman, Justin Hipple
|
* Copyright (c) 2006, Matt Edman, Justin Hipple *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
|
@ -1,24 +1,23 @@
|
|||||||
/****************************************************************
|
/*******************************************************************************
|
||||||
* This file is distributed under the following license:
|
* gui/settings/rsharesettings.h *
|
||||||
*
|
* *
|
||||||
* Copyright (c) 2006-2007, crypton
|
* Copyright (c) 2006-2007, crypton *
|
||||||
* Copyright (c) 2006, Matt Edman, Justin Hipple
|
* Copyright (c) 2006, Matt Edman, Justin Hipple *
|
||||||
*
|
* *
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* modify it under the terms of the GNU General Public License
|
* it under the terms of the GNU Affero General Public License as *
|
||||||
* as published by the Free Software Foundation; either version 2
|
* published by the Free Software Foundation, either version 3 of the *
|
||||||
* of the License, or (at your option) any later version.
|
* License, or (at your option) any later version. *
|
||||||
*
|
* *
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful, *
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
* GNU General Public License for more details.
|
* GNU Affero General Public License for more details. *
|
||||||
*
|
* *
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU Affero General Public License *
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
* *
|
||||||
* Boston, MA 02110-1301, USA.
|
*******************************************************************************/
|
||||||
****************************************************************/
|
|
||||||
|
|
||||||
#ifndef _RSHARESETTINGS_H
|
#ifndef _RSHARESETTINGS_H
|
||||||
#define _RSHARESETTINGS_H
|
#define _RSHARESETTINGS_H
|
||||||
|
Loading…
Reference in New Issue
Block a user