aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-screensaver/animations/BaseAnimGroup.cpp
blob: 477724e3286f77759d0e800a5cea3e3414a26fc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//===========================================
//  Lumina-DE source code
//  Copyright (c) 2015-2017, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
#include "BaseAnimGroup.h"

//Include all the known subclasses here, then add a unique ID for it to the functions at the bottom
//#include "SampleAnimation.h"
#include "Fireflies.h"
#include "Grav.h"
#include "SampleAnimation.h"
#include "Text.h"
#include "ImageSlideshow.h"
#include "VideoSlideshow.h"


QVariant BaseAnimGroup::readSetting(QString variable, QVariant defaultvalue){
  return DesktopSettings::instance()->value(DesktopSettings::ScreenSaver,
		 	"Animations/"+animPlugin+"/"+variable, defaultvalue);
}

//==============================
//     PLUGIN LOADING/LISTING
//==============================
BaseAnimGroup* BaseAnimGroup::NewAnimation(QString type, QWidget *parent){
  //This is where we place all the known plugin ID's, and load the associated subclass
  BaseAnimGroup *anim = 0;
  if(type=="fireflies"){
    anim = new FirefliesAnimation(parent);
  }else if(type == "grav") {
    anim = new GravAnimation(parent);
  }else if(type == "text") {
    anim = new TextAnimation(parent);
  }else if(type == "imageSlideshow") {
    anim = new ImageAnimation(parent);
  }else if(type == "videoSlideshow") {
    anim = new VideoAnimation(parent);
  }else {
    //Unknown screensaver, return a blank animation group
    anim = new BaseAnimGroup(parent);
  }
  //tag the animation with the type it is and return it
  if(anim!=0){ anim->animPlugin = type; }
  return anim;
}

QStringList BaseAnimGroup::KnownAnimations(){
  return (QStringList() << "grav" << "text" << "imageSlideshow" << "videoSlideshow" << "fireflies");
}
bgstack15