You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			523 B
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			20 lines
		
	
	
		
			523 B
		
	
	
	
		
			C++
		
	
#ifndef DBUSINTERFACE_H
 | 
						|
#define DBUSINTERFACE_H
 | 
						|
 | 
						|
#include <QObject>
 | 
						|
 | 
						|
class DBusInterface : QObject
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
    Q_CLASSINFO("D-Bus Interface", "org.freedesktop.FileManager1")
 | 
						|
 | 
						|
public:
 | 
						|
    explicit DBusInterface();
 | 
						|
 | 
						|
    Q_SCRIPTABLE void ShowFolders(const QStringList& uriList, const QString& startUpId);
 | 
						|
    Q_SCRIPTABLE void ShowItems(const QStringList& uriList, const QString& startUpId);
 | 
						|
    Q_SCRIPTABLE void ShowItemProperties(const QStringList& uriList, const QString& startUpId);
 | 
						|
};
 | 
						|
 | 
						|
#endif // DBUSINTERFACE_H
 |