Project

General

Profile

Download (6.61 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / java / org / distorted / dialogs / RubikDialogPattern.java @ 3f7a4363

1 e108b57e Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2 3a9d19ed Leszek Koltunski
// Copyright 2020 Leszek Koltunski                                                               //
3 e108b57e Leszek Koltunski
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// Magic Cube is free software: you can redistribute it and/or modify                            //
7
// it under the terms of the GNU General Public License as published by                          //
8
// the Free Software Foundation, either version 2 of the License, or                             //
9
// (at your option) any later version.                                                           //
10
//                                                                                               //
11
// Magic Cube is distributed in the hope that it will be useful,                                 //
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14
// GNU General Public License for more details.                                                  //
15
//                                                                                               //
16
// You should have received a copy of the GNU General Public License                             //
17
// along with Magic Cube.  If not, see <http://www.gnu.org/licenses/>.                           //
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20 1f9772f3 Leszek Koltunski
package org.distorted.dialogs;
21 e108b57e Leszek Koltunski
22
import android.app.Dialog;
23
import android.content.Context;
24 52d0a923 Leszek Koltunski
import android.content.DialogInterface;
25 e108b57e Leszek Koltunski
import android.os.Bundle;
26 66e777b0 Leszek Koltunski
import androidx.annotation.NonNull;
27
import androidx.fragment.app.FragmentActivity;
28
import androidx.viewpager.widget.ViewPager;
29
import androidx.appcompat.app.AlertDialog;
30
import androidx.appcompat.app.AppCompatDialogFragment;
31
import com.google.android.material.tabs.TabLayout;
32 e108b57e Leszek Koltunski
import android.util.DisplayMetrics;
33 52d0a923 Leszek Koltunski
import android.util.TypedValue;
34 e108b57e Leszek Koltunski
import android.view.LayoutInflater;
35
import android.view.View;
36
import android.view.Window;
37
import android.view.WindowManager;
38 52d0a923 Leszek Koltunski
import android.widget.Button;
39 e108b57e Leszek Koltunski
import android.widget.ImageView;
40
import android.widget.TextView;
41
42 3f7a4363 Leszek Koltunski
import org.distorted.objectlib.main.ObjectList;
43
44 1f9772f3 Leszek Koltunski
import org.distorted.main.R;
45 52d0a923 Leszek Koltunski
import org.distorted.main.RubikActivity;
46 b498f3f6 Leszek Koltunski
import org.distorted.patterns.RubikPatternList;
47 e108b57e Leszek Koltunski
48
///////////////////////////////////////////////////////////////////////////////////////////////////
49
50
public class RubikDialogPattern extends AppCompatDialogFragment
51
  {
52 b88be423 Leszek Koltunski
  private RubikDialogPatternPagerAdapter mPagerAdapter;
53 e108b57e Leszek Koltunski
54
///////////////////////////////////////////////////////////////////////////////////////////////////
55
56
  @NonNull
57
  @Override
58
  public Dialog onCreateDialog(Bundle savedInstanceState)
59
    {
60 a8576d91 Leszek Koltunski
    final FragmentActivity act = getActivity();
61 e108b57e Leszek Koltunski
    AlertDialog.Builder builder = new AlertDialog.Builder(act);
62
63 52d0a923 Leszek Koltunski
    DisplayMetrics displaymetrics = new DisplayMetrics();
64
    act.getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
65
    final float titleSize= displaymetrics.widthPixels * RubikActivity.MENU_BIG_TEXT_SIZE;
66 eb376d3a Leszek Koltunski
    final float okSize   = displaymetrics.widthPixels * RubikActivity.DIALOG_BUTTON_SIZE;
67 52d0a923 Leszek Koltunski
68 e108b57e Leszek Koltunski
    LayoutInflater layoutInflater = act.getLayoutInflater();
69
    TextView tv = (TextView) layoutInflater.inflate(R.layout.dialog_title, null);
70 52d0a923 Leszek Koltunski
    tv.setTextSize(TypedValue.COMPLEX_UNIT_PX, titleSize);
71 6f2a942e Leszek Koltunski
    tv.setText(R.string.choose_pattern);
72 e108b57e Leszek Koltunski
    builder.setCustomTitle(tv);
73
74 a8576d91 Leszek Koltunski
    builder.setPositiveButton( R.string.ok, new DialogInterface.OnClickListener()
75
      {
76
      @Override
77
      public void onClick(DialogInterface dialog, int which)
78
        {
79
80
        }
81
      });
82
83 e108b57e Leszek Koltunski
    Bundle args = getArguments();
84
    int curTab;
85
86
    try
87
      {
88
      curTab = args.getInt("tab");
89
      }
90
    catch(Exception e)
91
      {
92
      curTab = 0;
93
      }
94
95
    LayoutInflater inflater = act.getLayoutInflater();
96
    final View view = inflater.inflate(R.layout.dialog_tabbed, null);
97
    builder.setView(view);
98
99
    ViewPager viewPager = view.findViewById(R.id.viewpager);
100
    TabLayout tabLayout = view.findViewById(R.id.sliding_tabs);
101
    mPagerAdapter = new RubikDialogPatternPagerAdapter(act, viewPager, this);
102
    tabLayout.setupWithViewPager(viewPager);
103
    viewPager.setCurrentItem(curTab);
104
105 b498f3f6 Leszek Koltunski
    for(int i=0; i< RubikPatternList.NUM_OBJECTS; i++)
106 e108b57e Leszek Koltunski
      {
107 9c2f0c91 Leszek Koltunski
      ObjectList list = RubikPatternList.getObject(i);
108 4ab3d91b Leszek Koltunski
      int size        = RubikPatternList.getSize(i);
109
      int sizeIndex   = ObjectList.getSizeIndex(list.ordinal(),size);
110 588ace55 Leszek Koltunski
      int iconSize    = RubikActivity.getDrawableSize();
111
      int iconID      = list.getIconIDs(iconSize)[sizeIndex];
112 b498f3f6 Leszek Koltunski
113 e108b57e Leszek Koltunski
      ImageView imageView = new ImageView(act);
114 b498f3f6 Leszek Koltunski
      imageView.setImageResource(iconID);
115 e108b57e Leszek Koltunski
      TabLayout.Tab tab = tabLayout.getTabAt(i);
116
      if(tab!=null) tab.setCustomView(imageView);
117
      }
118
119 85248b04 Leszek Koltunski
    Dialog dialog = builder.create();
120
    dialog.setCanceledOnTouchOutside(false);
121
    Window window = dialog.getWindow();
122
123
    if( window!=null )
124
      {
125 ffd68f35 Leszek Koltunski
      window.getDecorView().setSystemUiVisibility(RubikActivity.FLAGS);
126 85248b04 Leszek Koltunski
      }
127
128 52d0a923 Leszek Koltunski
    dialog.setOnShowListener(new DialogInterface.OnShowListener()
129
      {
130
      @Override
131
      public void onShow(DialogInterface dialog)
132
        {
133
        Button btnPositive = ((AlertDialog)dialog).getButton(Dialog.BUTTON_POSITIVE);
134
        btnPositive.setTextSize(TypedValue.COMPLEX_UNIT_PX, okSize);
135
        }
136
      });
137
138 85248b04 Leszek Koltunski
    return dialog;
139 e108b57e Leszek Koltunski
    }
140
141
///////////////////////////////////////////////////////////////////////////////////////////////////
142
143
  @Override
144
  public void onResume()
145
    {
146
    super.onResume();
147
148
    Window window = getDialog().getWindow();
149
    Context context = getContext();
150
151
    if( window!=null && context!=null )
152
      {
153
      DisplayMetrics metrics = context.getResources().getDisplayMetrics();
154
      final float height= metrics.heightPixels;
155
156
      WindowManager.LayoutParams params = window.getAttributes();
157
      params.width = WindowManager.LayoutParams.WRAP_CONTENT;
158
      params.height = (int)(0.75f*height);
159
      window.setAttributes(params);
160
      }
161
    }
162
163 044529c1 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
164
165 c715128d Leszek Koltunski
  public void rememberState()
166 044529c1 Leszek Koltunski
    {
167 c715128d Leszek Koltunski
    mPagerAdapter.rememberState();
168 044529c1 Leszek Koltunski
    }
169
170 e108b57e Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
171
172
  public static String getDialogTag()
173
    {
174
    return "DialogPattern";
175
    }
176
  }