ginebra2/ContentViews/ViewportMetaData.h
author hgs
Fri, 15 Oct 2010 17:30:59 -0400
changeset 16 3c88a81ff781
parent 3 0954f5dd2cd0
permissions -rw-r--r--
201041

/*
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, version 2.1 of the License.
*
* This program 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program.  If not,
* see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/".
*
* Description:
*
*/

#ifndef ViewportMetaData_h
#define ViewportMetaData_h

#include <QFlags>
#include <QObject>
#include <QRect>

// Define VIEWPORT_ALWAYS_ALLOW_ZOOMING to force all content (particularly mobile content that
// has UserScalable turned off) to be scalable.  This makes such content more usable since our
// default font is so small.  If we switch to a larger default font this can be removed.
#ifdef Q_WS_MAEMO_5
#define VIEWPORT_ALWAYS_ALLOW_ZOOMING
#endif

namespace GVA {

struct ParsedViewportData{
    QString m_width;
    QString m_height;
    qreal m_minScale;
};

class ViewportMetaData {
public:
    enum {
        ValueUndefined = -1
    };

    enum ScaleLimit {
        UserDefinedMinumumScale = 0x1,
        UserDefinedMaximumScale = 0x2,
        UserDefinedInitialScale = 0x4,
    };
    Q_DECLARE_FLAGS(ScaleLimits, ScaleLimit)

    ViewportMetaData();
    ViewportMetaData(const ViewportMetaData&);
    ViewportMetaData& operator=(const ViewportMetaData&);
    ~ViewportMetaData();

    void adjustViewportData(const QSizeF& clientRect);
    QSize getSpecifiedSize() const;
    void adjustZoomValues(const QSizeF& contentSize);
    void orientationChanged(const QSizeF& newClientRect);
    bool isLayoutNeeded();
    void reset() {initialize();}

    void setFlag(ScaleLimit scaleLimit, bool enable)
    {
        if (enable)
            m_scaleLimits |= scaleLimit;
        else
            m_scaleLimits &= !scaleLimit;
    }

    bool getFlag(ScaleLimit scaleLimit)
    {
        return m_scaleLimits.testFlag(scaleLimit);
    }

protected:
    void initialize();

    bool isUserSpecifiedWidth();
    bool isUserSpecifiedHeight();

public:
    qreal m_initialScale;
    qreal m_minimumScale;
    qreal m_maximumScale;
    int m_width;
    int m_height;
    bool m_userScalable;
#ifdef VIEWPORT_ALWAYS_ALLOW_ZOOMING
    /// True indicates that "user-scalable=no" has been overridden.
    bool m_userScalableOverRidden;
#endif
    ScaleLimits m_scaleLimits;
    bool m_isValid;
    ParsedViewportData m_specifiedData;
    int m_defaultViewportWidth;
    int m_defaultViewportHeight;
    int m_maxViewportWidth;
    int m_maxViewportHeight;
    
};//ViewportMetaData

Q_DECLARE_OPERATORS_FOR_FLAGS(ViewportMetaData::ScaleLimits)

} //namespace GVA

#endif //ViewportMetaData_h