Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
cfwl_eventselectchanged.cpp
Go to the documentation of this file.
1// Copyright 2016 The PDFium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7#include "xfa/fwl/cfwl_eventselectchanged.h"
8
9CFWL_EventSelectChanged::CFWL_EventSelectChanged(CFWL_Widget* pSrcTarget,
10 bool bLButtonUp)
12 m_bLButtonUp(bLButtonUp),
13 m_iYear(-1),
14 m_iMonth(-1),
15 m_iDay(-1) {}
16
17CFWL_EventSelectChanged::CFWL_EventSelectChanged(CFWL_Widget* pSrcTarget,
18 int32_t iYear,
19 int32_t iMonth,
20 int32_t iDay)
22 m_bLButtonUp(false),
23 m_iYear(iYear),
24 m_iMonth(iMonth),
25 m_iDay(iDay) {}
26
27CFWL_EventSelectChanged::~CFWL_EventSelectChanged() = default;
CFWL_EventSelectChanged(CFWL_Widget *pSrcTarget, int32_t iYear, int32_t iMonth, int32_t iDay)
CFWL_EventSelectChanged(CFWL_Widget *pSrcTarget, bool bLButtonUp)
~CFWL_EventSelectChanged() override
CFWL_Event(Type type, CFWL_Widget *pSrcTarget)