/*
 * OptionsGeneral.h
 *
 * Sample Windows Mobile application.
 *
 * Open Phone Abstraction Library
 *
 * Copyright (c) 2008 Vox Lucida
 *
 * The contents of this file are subject to the Mozilla Public License
 * Version 1.0 (the "License"); you may not use this file except in
 * compliance with the License. You may obtain a copy of the License at
 * http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 * the License for the specific language governing rights and limitations
 * under the License.
 *
 * The Original Code is Open Phone Abstraction Library.
 *
 * The Initial Developer of the Original Code is Vox Lucida (Robert Jongbloed)
 *
 * Contributor(s): ______________________________________.
 *
 * $Revision: 21752 $
 * $Author: rjongbloed $
 * $Date: 2008-12-10 02:48:17 +0000 (Wed, 10 Dec 2008) $
 */

#pragma once
#include "afxwin.h"
#include "ScrollableDialog.h"


// COptionsGeneral dialog

class COptionsGeneral : public CScrollableDialog
{
  DECLARE_DYNAMIC(COptionsGeneral)

public:
  COptionsGeneral(CWnd* pParent = NULL);   // standard constructor
  virtual ~COptionsGeneral();

  // Dialog Data
  enum { IDD = IDD_OPTIONS_GENERAL };

protected:
  virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  virtual BOOL OnInitDialog();

  DECLARE_MESSAGE_MAP()

  void AddToCombo(const CString & str);

public:
  CString m_strUsername;
  CString m_strDisplayName;
  CString m_strStunServer;
  CString m_interfaceAddress;
  CComboBox m_interfaceAddressCombo;
  BOOL m_AutoStartTxVideo;
};
