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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/*
Copyright (C) 2010 ProFUSION embedded systems
Copyright (C) 2010 Samsung Electronics
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "ewk_window_features.h"
#include "WindowFeatures.h"
#include "ewk_private.h"
#include <Eina.h>
/**
* \struct _Ewk_Window_Features
* @brief Contains the window features data.
*/
struct _Ewk_Window_Features {
unsigned int __ref;
WebCore::WindowFeatures* core;
};
void ewk_window_features_unref(Ewk_Window_Features* windowFeatures)
{
EINA_SAFETY_ON_NULL_RETURN(windowFeatures);
EINA_SAFETY_ON_FALSE_RETURN(windowFeatures->__ref > 0);
if (--windowFeatures->__ref)
return;
delete windowFeatures->core;
windowFeatures->core = 0;
delete windowFeatures;
}
void ewk_window_features_ref(Ewk_Window_Features* windowFeatures)
{
EINA_SAFETY_ON_NULL_RETURN(windowFeatures);
windowFeatures->__ref++;
}
void ewk_window_features_bool_property_get(const Ewk_Window_Features* windowFeatures, Eina_Bool* toolbarVisible, Eina_Bool* statusbarVisible, Eina_Bool* scrollbarsVisible, Eina_Bool* menubarVisible, Eina_Bool* locationbarVisible, Eina_Bool* fullScreen)
{
EINA_SAFETY_ON_NULL_RETURN(windowFeatures);
EINA_SAFETY_ON_NULL_RETURN(windowFeatures->core);
if (toolbarVisible)
*toolbarVisible = windowFeatures->core->toolBarVisible;
if (statusbarVisible)
*statusbarVisible = windowFeatures->core->statusBarVisible;
if (scrollbarsVisible)
*scrollbarsVisible = windowFeatures->core->scrollbarsVisible;
if (menubarVisible)
*menubarVisible = windowFeatures->core->menuBarVisible;
if (locationbarVisible)
*locationbarVisible = windowFeatures->core->locationBarVisible;
if (fullScreen)
*fullScreen = windowFeatures->core->fullscreen;
}
void ewk_window_features_int_property_get(const Ewk_Window_Features* windowFeatures, int* x, int* y, int* width, int* height)
{
EINA_SAFETY_ON_NULL_RETURN(windowFeatures);
EINA_SAFETY_ON_NULL_RETURN(windowFeatures->core);
if (x)
*x = windowFeatures->core->xSet ? static_cast<int>(windowFeatures->core->x) : -1;
if (y)
*y = windowFeatures->core->ySet ? static_cast<int>(windowFeatures->core->y) : -1;
if (width)
*width = windowFeatures->core->widthSet ? static_cast<int>(windowFeatures->core->width) : -1;
if (height)
*height = windowFeatures->core->heightSet ? static_cast<int>(windowFeatures->core->height) : -1;
}
/* internal methods ****************************************************/
/**
* @internal
*
* Creates a new Ewk_Window_Features object.
*
* @param core if not @c 0 a new WebCore::WindowFeatures is allocated copying core features and
* it is embedded inside the Ewk_Window_Features whose ref count is initialized, if core is @c 0 a new one is created with the default features.
* @return a new allocated the Ewk_Window_Features object on sucess or @c 0 on failure
*/
Ewk_Window_Features* ewk_window_features_new_from_core(const WebCore::WindowFeatures* core)
{
Ewk_Window_Features* window_features = new Ewk_Window_Features;
if (core)
window_features->core = new WebCore::WindowFeatures(*core);
else
window_features->core = new WebCore::WindowFeatures();
window_features->__ref = 1;
return window_features;
}
|