Home | History | Annotate | Download | only in win

Lines Matching refs:Desktop

22 class Desktop {
24 ~Desktop();
26 // Returns the name of the desktop represented by the object. Return false if
30 // Returns true if |other| has the same name as this desktop. Returns false
31 // in any other case including failing Win32 APIs and uninitialized desktop
33 bool IsSame(const Desktop& other) const;
35 // Assigns the desktop to the current thread. Returns false is the operation
39 // Returns the desktop by its name or NULL if an error occurs.
40 static Desktop* GetDesktop(const wchar_t* desktop_name);
42 // Returns the desktop currently receiving user input or NULL if an error
44 static Desktop* GetInputDesktop();
46 // Returns the desktop currently assigned to the calling thread or NULL if
48 static Desktop* GetThreadDesktop();
51 Desktop(HDESK desktop, bool own);
53 // The desktop handle.
59 DISALLOW_COPY_AND_ASSIGN(Desktop);