os/graphics/windowing/windowserverplugins/openwfc/src/rsdisplaychangeao.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "rsdisplaychangeao.h"
sl@0
    17
#include "displaypolicy.h"
sl@0
    18
sl@0
    19
CRsDisplayChangeNotifier::CRsDisplayChangeNotifier(MWsDisplayControl* aNextLevelInterface, CDisplayPolicy* aDisplayPolicy)
sl@0
    20
:CActive(EPriorityHigh),iWsStatus(NULL)
sl@0
    21
	{
sl@0
    22
	CActiveScheduler::Add(this);
sl@0
    23
	iNextLevelInterface = aNextLevelInterface;
sl@0
    24
	iDisplayPolicy = aDisplayPolicy;
sl@0
    25
	}
sl@0
    26
sl@0
    27
CRsDisplayChangeNotifier* CRsDisplayChangeNotifier::NewL(MWsDisplayControl* aNextLevelInterface, CDisplayPolicy* aDisplayPolicy)
sl@0
    28
	{
sl@0
    29
	CRsDisplayChangeNotifier* self = new(ELeave) CRsDisplayChangeNotifier(aNextLevelInterface, aDisplayPolicy);
sl@0
    30
	return self;
sl@0
    31
	}
sl@0
    32
sl@0
    33
void CRsDisplayChangeNotifier::IssueNotificationRequest()
sl@0
    34
	{
sl@0
    35
	iNextLevelInterface->NotifyOnDisplayChange(iStatus);
sl@0
    36
	SetActive();
sl@0
    37
	}
sl@0
    38
void CRsDisplayChangeNotifier::RegisterActiveStatus(TRequestStatus &aStatus)
sl@0
    39
	{
sl@0
    40
	iWsStatus = &aStatus;
sl@0
    41
	}
sl@0
    42
sl@0
    43
void CRsDisplayChangeNotifier::CancelNotificationRequest()
sl@0
    44
	{
sl@0
    45
	Cancel();
sl@0
    46
	}
sl@0
    47
sl@0
    48
void CRsDisplayChangeNotifier::RunL()
sl@0
    49
	{
sl@0
    50
	//IssueNotificationRequest will overwrite iStatus, save a copy first;
sl@0
    51
	TInt result = iStatus.Int();
sl@0
    52
	IssueNotificationRequest();
sl@0
    53
	
sl@0
    54
	//calculate min UI buffer size depending on physical resolutions
sl@0
    55
	TInt ret = iNextLevelInterface->NumberOfResolutions();
sl@0
    56
	RArray<MDisplayControlBase::TResolution> resolutions;
sl@0
    57
	CleanupClosePushL(resolutions);
sl@0
    58
	if(ret > 0)
sl@0
    59
		{
sl@0
    60
		//just ignore the error. if there's an error, an empty resolution list is passed in, and uibuffer
sl@0
    61
		//will remain the previous size
sl@0
    62
		iNextLevelInterface->GetResolutions(resolutions);
sl@0
    63
		}
sl@0
    64
	iDisplayPolicy->CalculateMinBufferSize(resolutions, ret);				
sl@0
    65
	CleanupStack::PopAndDestroy(&resolutions);
sl@0
    66
	
sl@0
    67
	if(iWsStatus && *iWsStatus == KRequestPending)
sl@0
    68
		{
sl@0
    69
		User::RequestComplete(iWsStatus, result);
sl@0
    70
		}
sl@0
    71
	}
sl@0
    72
sl@0
    73
void CRsDisplayChangeNotifier::DoCancel()
sl@0
    74
	{
sl@0
    75
	iNextLevelInterface->NotifyOnDisplayChangeCancel();
sl@0
    76
	if(iWsStatus && *iWsStatus == KRequestPending)
sl@0
    77
		User::RequestComplete(iWsStatus, KErrCancel);
sl@0
    78
	}
sl@0
    79
sl@0
    80
CRsDisplayChangeNotifier::~CRsDisplayChangeNotifier()
sl@0
    81
	{
sl@0
    82
	Cancel();
sl@0
    83
	}
sl@0
    84
sl@0
    85
CRsConfigChangeNotifier::CRsConfigChangeNotifier(MWsDisplayControl* aNextLevelInterface)
sl@0
    86
:CActive(EPriorityHigh), iWsStatus(NULL)
sl@0
    87
	{
sl@0
    88
	CActiveScheduler::Add(this);
sl@0
    89
	iNextLevelInterface = aNextLevelInterface;
sl@0
    90
	}
sl@0
    91
sl@0
    92
CRsConfigChangeNotifier* CRsConfigChangeNotifier::NewL(MWsDisplayControl* aNextLevelInterface)
sl@0
    93
	{
sl@0
    94
	CRsConfigChangeNotifier* self = new(ELeave) CRsConfigChangeNotifier(aNextLevelInterface);
sl@0
    95
	return self;
sl@0
    96
	}
sl@0
    97
sl@0
    98
void CRsConfigChangeNotifier::IssueNotificationRequest()
sl@0
    99
	{
sl@0
   100
	iNextLevelInterface->NotifyOnConfigChange(iStatus);
sl@0
   101
	SetActive();
sl@0
   102
	}
sl@0
   103
sl@0
   104
void CRsConfigChangeNotifier::RegisterActiveStatus(TRequestStatus &aStatus)
sl@0
   105
	{
sl@0
   106
	iWsStatus = &aStatus;
sl@0
   107
	}
sl@0
   108
sl@0
   109
void CRsConfigChangeNotifier::CancelNotificationRequest()
sl@0
   110
	{
sl@0
   111
	Cancel();
sl@0
   112
	}
sl@0
   113
sl@0
   114
void CRsConfigChangeNotifier::RunL()
sl@0
   115
	{
sl@0
   116
	//IssueNotificationRequest will overwrite iStatus, save a copy first;
sl@0
   117
	TInt result = iStatus.Int();
sl@0
   118
	IssueNotificationRequest();
sl@0
   119
	if(iWsStatus && *iWsStatus == KRequestPending)
sl@0
   120
		{
sl@0
   121
		User::RequestComplete(iWsStatus, result);
sl@0
   122
		}
sl@0
   123
	}
sl@0
   124
sl@0
   125
void CRsConfigChangeNotifier::DoCancel()
sl@0
   126
	{
sl@0
   127
	iNextLevelInterface->NotifyOnConfigChangeCancel();
sl@0
   128
	if(iWsStatus && *iWsStatus == KRequestPending)
sl@0
   129
		User::RequestComplete(iWsStatus, KErrCancel);
sl@0
   130
	}
sl@0
   131
sl@0
   132
CRsConfigChangeNotifier::~CRsConfigChangeNotifier()
sl@0
   133
	{
sl@0
   134
	Cancel();
sl@0
   135
	}