Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
kaidan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linus Jahn
kaidan
Commits
71f38813
Commit
71f38813
authored
Jan 06, 2017
by
Linus Jahn
Committed by
GitHub
Jan 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add copyright notices in all files (#48)
parent
bba1c2f0
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
199 additions
and
1 deletion
+199
-1
src/Kaidan.cpp
src/Kaidan.cpp
+21
-0
src/Kaidan.h
src/Kaidan.h
+21
-0
src/RosterController.cpp
src/RosterController.cpp
+19
-1
src/RosterController.h
src/RosterController.h
+19
-0
src/RosterItem.cpp
src/RosterItem.cpp
+19
-0
src/RosterItem.h
src/RosterItem.h
+19
-0
src/main.cpp
src/main.cpp
+21
-0
src/qml/LoginPage.qml
src/qml/LoginPage.qml
+20
-0
src/qml/RosterPage.qml
src/qml/RosterPage.qml
+20
-0
src/qml/main.qml
src/qml/main.qml
+20
-0
No files found.
src/Kaidan.cpp
View file @
71f38813
/*
* Kaidan - Cross platform XMPP client
*
* Copyright (C) 2016 LNJ <git@lnj.li>
* Copyright (C) 2016 Marzanna
* Copyright (C) 2016 geobra <s.g.b@gmx.de>
*
* Kaidan 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 3 of the License, or
* (at your option) any later version.
*
* Kaidan 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 Kaidan. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Kaidan.h"
#include <iostream>
...
...
src/Kaidan.h
View file @
71f38813
/*
* Kaidan - Cross platform XMPP client
*
* Copyright (C) 2016 LNJ <git@lnj.li>
* Copyright (C) 2016 Marzanna
* Copyright (C) 2016 geobra <s.g.b@gmx.de>
*
* Kaidan 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 3 of the License, or
* (at your option) any later version.
*
* Kaidan 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 Kaidan. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KAIDAN_H
#define KAIDAN_H
...
...
src/RosterController.cpp
View file @
71f38813
/*
* Kaidan - Cross platform XMPP client
*
* Copyright (C) 2016 geobra <s.g.b@gmx.de>
*
* Kaidan 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 3 of the License, or
* (at your option) any later version.
*
* Kaidan 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 Kaidan. If not, see <http://www.gnu.org/licenses/>.
*/
#include "RosterController.h"
#include <QQmlContext>
...
...
@@ -54,4 +73,3 @@ QQmlListProperty<RosterItem> RosterController::getRosterList()
{
return
QQmlListProperty
<
RosterItem
>
(
this
,
rosterList_
);
}
src/RosterController.h
View file @
71f38813
/*
* Kaidan - Cross platform XMPP client
*
* Copyright (C) 2016 geobra <s.g.b@gmx.de>
*
* Kaidan 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 3 of the License, or
* (at your option) any later version.
*
* Kaidan 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 Kaidan. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef ROSTERCONTROLLER_H
#define ROSTERCONTROLLER_H
...
...
src/RosterItem.cpp
View file @
71f38813
/*
* Kaidan - Cross platform XMPP client
*
* Copyright (C) 2016 geobra <s.g.b@gmx.de>
*
* Kaidan 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 3 of the License, or
* (at your option) any later version.
*
* Kaidan 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 Kaidan. If not, see <http://www.gnu.org/licenses/>.
*/
#include "RosterItem.h"
RosterItem
::
RosterItem
(
QObject
*
parent
)
:
QObject
(
parent
),
subscription_
(
None
),
jid_
(
""
),
name_
(
""
)
...
...
src/RosterItem.h
View file @
71f38813
/*
* Kaidan - Cross platform XMPP client
*
* Copyright (C) 2016 geobra <s.g.b@gmx.de>
*
* Kaidan 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 3 of the License, or
* (at your option) any later version.
*
* Kaidan 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 Kaidan. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef ROSTERITEM_H
#define ROSTERITEM_H
...
...
src/main.cpp
View file @
71f38813
/*
* Kaidan - Cross platform XMPP client
*
* Copyright (C) 2016 LNJ <git@lnj.li>
* Copyright (C) 2016 Marzanna
* Copyright (C) 2016 geobra <s.g.b@gmx.de>
*
* Kaidan 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 3 of the License, or
* (at your option) any later version.
*
* Kaidan 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 Kaidan. If not, see <http://www.gnu.org/licenses/>.
*/
// Qt
#include <QCommandLineParser>
#include <QCommandLineOption>
...
...
src/qml/LoginPage.qml
View file @
71f38813
/*
* Kaidan - Cross platform XMPP client
*
* Copyright (C) 2016 LNJ <git@lnj.li>
* Copyright (C) 2016 Marzanna
*
* Kaidan 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 3 of the License, or
* (at your option) any later version.
*
* Kaidan 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 Kaidan. If not, see <http://www.gnu.org/licenses/>.
*/
import
QtQuick
2.0
import
QtQuick
.
Controls
2.0
as
Controls
import
QtQuick
.
Layouts
1.2
...
...
src/qml/RosterPage.qml
View file @
71f38813
/*
* Kaidan - Cross platform XMPP client
*
* Copyright (C) 2016 LNJ <git@lnj.li>
* Copyright (C) 2016 Marzanna
*
* Kaidan 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 3 of the License, or
* (at your option) any later version.
*
* Kaidan 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 Kaidan. If not, see <http://www.gnu.org/licenses/>.
*/
import
QtQuick
2.0
import
org
.
kde
.
kirigami
1.0
as
Kirigami
import
harbour
.
kaidan
1.0
...
...
src/qml/main.qml
View file @
71f38813
/*
* Kaidan - Cross platform XMPP client
*
* Copyright (C) 2016 LNJ <git@lnj.li>
* Copyright (C) 2016 Marzanna
*
* Kaidan 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 3 of the License, or
* (at your option) any later version.
*
* Kaidan 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 Kaidan. If not, see <http://www.gnu.org/licenses/>.
*/
import
QtQuick
2.0
import
org
.
kde
.
kirigami
1.0
as
Kirigami
import
harbour
.
kaidan
1.0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment