blob: 3ac5f4607b2899b4733d689ddbf1fa983e7c3312 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Equo
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Guillermo Zunino, Equo - initial implementation
********************************************************************************/
package org.eclipse.swt.internal.chromium.lib;
///
/// Popup window features.
///
public class cef_popup_features_t {
public int x;
public int xSet;
public int y;
public int ySet;
public int width;
public int widthSet;
public int height;
public int heightSet;
public int menuBarVisible;
public int statusBarVisible;
public int toolBarVisible;
public int locationBarVisible;
public int scrollbarsVisible;
public int resizable;
public int fullscreen;
public int dialog;
public static final int sizeof = ChromiumLib.cef_popup_features_t_sizeof();
}