blob: f6f9686d06369eac8539d172df2490745811f695 [file] [log] [blame]
Edric Milaret4bba46d2015-04-29 16:33:38 -04001/***************************************************************************
Anthony LĂ©onard2fde81d2017-04-17 10:06:55 -04002 * Copyright (C) 2015-2017 by Savoir-faire Linux *
Edric Milaret4bba46d2015-04-29 16:33:38 -04003 * Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>*
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
18
Edric Milaret5f316da2015-09-28 11:57:42 -040019#pragma once
Edric Milaret4bba46d2015-04-29 16:33:38 -040020
Edric Milaretb37aa1f2015-07-09 16:39:04 -040021//Needed for OS detection
22#include <QtGlobal>
23
Edric Milaret36587362016-02-04 12:30:52 -050024#ifdef Q_OS_WIN
Edric Milaret4bba46d2015-04-29 16:33:38 -040025#include <windows.h>
Edric Milaretb37aa1f2015-07-09 16:39:04 -040026#else //LINUX
27#define LPCWSTR char*
28#endif
Edric Milaret4bba46d2015-04-29 16:33:38 -040029
30#include <string>
Edric Milaret031c3052015-04-29 18:14:18 -040031#include <QString>
Edric Milaret25236d92016-03-28 09:40:58 -040032#include <QImage>
Olivier SOLDANOc1ca2df2017-09-06 16:01:46 -040033#include <QStackedWidget>
Edric Milaret4bba46d2015-04-29 16:33:38 -040034
Olivier SOLDANOc1ca2df2017-09-06 16:01:46 -040035namespace Utils
Edric Milaret4bba46d2015-04-29 16:33:38 -040036{
Olivier SOLDANOc1ca2df2017-09-06 16:01:46 -040037 constexpr int animDuration_ = 200; // animation duration for sliding page in ms
38
39 bool CreateStartupLink();
40 void DeleteStartupLink();
41 bool CreateLink(LPCWSTR lpszPathObj, LPCWSTR lpszPathLink);
42 bool CheckStartupLink();
43 QString GetRingtonePath();
44 QString GenGUID();
45 QString GetISODate();
46 QString GetCurrentUserName();
47 void InvokeMailto(const QString& subject, const QString& body, const QString& attachement = QString());
48 QImage getCirclePhoto(const QImage original, int sizePhoto);
49 void slidePage(QStackedWidget *stack, QWidget *widget, bool toRight = false);
50}
Edric Milaret4bba46d2015-04-29 16:33:38 -040051