widget/gtk/nsScreenGtk.h

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 #ifndef nsScreenGtk_h___
     7 #define nsScreenGtk_h___
     9 #include "nsBaseScreen.h"
    10 #include "nsRect.h"
    11 #include "gdk/gdk.h"
    12 #ifdef MOZ_X11
    13 #include <X11/Xlib.h>
    15 // from Xinerama.h
    16 typedef struct {
    17    int   screen_number;
    18    short x_org;
    19    short y_org;
    20    short width;
    21    short height;
    22 } XineramaScreenInfo;
    23 #endif /* MOZ_X11 */
    25 //------------------------------------------------------------------------
    27 class nsScreenGtk : public nsBaseScreen
    28 {
    29 public:
    30   nsScreenGtk();
    31   ~nsScreenGtk();
    33   NS_IMETHOD GetRect(int32_t* aLeft, int32_t* aTop, int32_t* aWidth, int32_t* aHeight);
    34   NS_IMETHOD GetAvailRect(int32_t* aLeft, int32_t* aTop, int32_t* aWidth, int32_t* aHeight);
    35   NS_IMETHOD GetPixelDepth(int32_t* aPixelDepth);
    36   NS_IMETHOD GetColorDepth(int32_t* aColorDepth);
    38   void Init(GdkWindow *aRootWindow);
    39 #ifdef MOZ_X11
    40   void Init(XineramaScreenInfo *aScreenInfo);
    41 #endif /* MOZ_X11 */
    43 private:
    44   uint32_t mScreenNum;
    45   nsIntRect mRect;
    46   nsIntRect mAvailRect;
    47 };
    49 #endif  // nsScreenGtk_h___ 

mercurial