Project

General

Profile

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

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

1 a7a7cc9c Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2019 Leszek Koltunski                                                               //
3
//                                                                                               //
4 fdec60a3 Leszek Koltunski
// This file is part of Magic Cube.                                                              //
5 a7a7cc9c Leszek Koltunski
//                                                                                               //
6 fdec60a3 Leszek Koltunski
// Magic Cube is free software: you can redistribute it and/or modify                            //
7 a7a7cc9c Leszek Koltunski
// 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 fdec60a3 Leszek Koltunski
// Magic Cube is distributed in the hope that it will be useful,                                 //
12 a7a7cc9c Leszek Koltunski
// 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 fdec60a3 Leszek Koltunski
// along with Magic Cube.  If not, see <http://www.gnu.org/licenses/>.                           //
18 a7a7cc9c Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20 1f9772f3 Leszek Koltunski
package org.distorted.dialogs;
21 a7a7cc9c Leszek Koltunski
22 fdec60a3 Leszek Koltunski
import android.app.Dialog;
23
import android.content.DialogInterface;
24
import android.os.Bundle;
25 66e777b0 Leszek Koltunski
import androidx.annotation.NonNull;
26
import androidx.fragment.app.FragmentActivity;
27
import androidx.viewpager.widget.ViewPager;
28
import androidx.appcompat.app.AlertDialog;
29
import androidx.appcompat.app.AppCompatDialogFragment;
30
import com.google.android.material.tabs.TabLayout;
31 52d0a923 Leszek Koltunski
32
import android.util.DisplayMetrics;
33
import android.util.TypedValue;
34 fdec60a3 Leszek Koltunski
import android.view.LayoutInflater;
35
import android.view.View;
36 4235de9b Leszek Koltunski
import android.view.Window;
37 52d0a923 Leszek Koltunski
import android.widget.Button;
38 fdec60a3 Leszek Koltunski
import android.widget.ImageView;
39
import android.widget.TextView;
40 a7a7cc9c Leszek Koltunski
41 3f7a4363 Leszek Koltunski
import org.distorted.objectlib.main.ObjectList;
42
43 1f9772f3 Leszek Koltunski
import org.distorted.main.R;
44 52d0a923 Leszek Koltunski
import org.distorted.main.RubikActivity;
45 211b48f2 Leszek Koltunski
46 a7a7cc9c Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
47
48 0fd3ac1f Leszek Koltunski
public class RubikDialogScores extends AppCompatDialogFragment
49 a7a7cc9c Leszek Koltunski
  {
50 85248b04 Leszek Koltunski
  private RubikDialogScoresPagerAdapter mPagerAdapter;
51 4235de9b Leszek Koltunski
52 fdec60a3 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
53
54
  @NonNull
55
  @Override
56
  public Dialog onCreateDialog(Bundle savedInstanceState)
57
    {
58
    FragmentActivity act = getActivity();
59
    AlertDialog.Builder builder = new AlertDialog.Builder(act);
60
61 52d0a923 Leszek Koltunski
    DisplayMetrics displaymetrics = new DisplayMetrics();
62
    act.getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
63
    final float titleSize= displaymetrics.widthPixels * RubikActivity.MENU_BIG_TEXT_SIZE;
64 eb376d3a Leszek Koltunski
    final float okSize   = displaymetrics.widthPixels * RubikActivity.DIALOG_BUTTON_SIZE;
65 52d0a923 Leszek Koltunski
66 fdec60a3 Leszek Koltunski
    LayoutInflater layoutInflater = act.getLayoutInflater();
67 0fd3ac1f Leszek Koltunski
    TextView tv = (TextView) layoutInflater.inflate(R.layout.dialog_title, null);
68 52d0a923 Leszek Koltunski
    tv.setTextSize(TypedValue.COMPLEX_UNIT_PX, titleSize);
69 4235de9b Leszek Koltunski
    tv.setText(R.string.scores);
70 fdec60a3 Leszek Koltunski
    builder.setCustomTitle(tv);
71
72
    builder.setCancelable(true);
73
    builder.setPositiveButton( R.string.ok, new DialogInterface.OnClickListener()
74
      {
75
      @Override
76
      public void onClick(DialogInterface dialog, int which)
77
        {
78
79
        }
80
      });
81
82 4918f19c Leszek Koltunski
    Bundle args = getArguments();
83
    int curTab;
84 4895fff6 Leszek Koltunski
    boolean isSubmitting;
85 4918f19c Leszek Koltunski
86
    try
87
      {
88
      curTab = args.getInt("tab");
89 4895fff6 Leszek Koltunski
      isSubmitting = args.getBoolean("submitting");
90 4918f19c Leszek Koltunski
      }
91
    catch(Exception e)
92
      {
93
      curTab = 0;
94 4895fff6 Leszek Koltunski
      isSubmitting = false;
95 4918f19c Leszek Koltunski
      }
96
97 fdec60a3 Leszek Koltunski
    LayoutInflater inflater = act.getLayoutInflater();
98 d18993ac Leszek Koltunski
    final View view = inflater.inflate(R.layout.dialog_tabbed, null);
99 fdec60a3 Leszek Koltunski
    builder.setView(view);
100
101 946d9762 Leszek Koltunski
    ViewPager viewPager = view.findViewById(R.id.viewpager);
102 fdec60a3 Leszek Koltunski
    TabLayout tabLayout = view.findViewById(R.id.sliding_tabs);
103 f895e77a Leszek Koltunski
    mPagerAdapter = new RubikDialogScoresPagerAdapter(act,viewPager,isSubmitting, this);
104 946d9762 Leszek Koltunski
    tabLayout.setupWithViewPager(viewPager);
105 cc5ec229 Leszek Koltunski
106 4918f19c Leszek Koltunski
    viewPager.setCurrentItem(curTab);
107 9c2f0c91 Leszek Koltunski
    ObjectList list;
108 fdec60a3 Leszek Koltunski
109 9c2f0c91 Leszek Koltunski
    for (int object = 0; object< ObjectList.NUM_OBJECTS; object++)
110 fdec60a3 Leszek Koltunski
      {
111 9c2f0c91 Leszek Koltunski
      list = ObjectList.getObject(object);
112 588ace55 Leszek Koltunski
      int iconSize = RubikActivity.getDrawableSize();
113
      int[] iconID = list.getIconIDs(iconSize);
114 4888e97c Leszek Koltunski
      int len = list.getSizes().length;
115
116
      for(int size=0; size<len; size++)
117
        {
118 9c2f0c91 Leszek Koltunski
        int t = ObjectList.pack(object,size);
119 4888e97c Leszek Koltunski
        ImageView imageView = new ImageView(act);
120
        imageView.setImageResource(iconID[size]);
121
        TabLayout.Tab tab = tabLayout.getTabAt(t);
122
        if(tab!=null) tab.setCustomView(imageView);
123
        }
124 fdec60a3 Leszek Koltunski
      }
125
126 85248b04 Leszek Koltunski
    Dialog dialog = builder.create();
127
    dialog.setCanceledOnTouchOutside(false);
128
    Window window = dialog.getWindow();
129
130
    if( window!=null )
131
      {
132 ffd68f35 Leszek Koltunski
      window.getDecorView().setSystemUiVisibility(RubikActivity.FLAGS);
133 85248b04 Leszek Koltunski
      }
134
135 52d0a923 Leszek Koltunski
    dialog.setOnShowListener(new DialogInterface.OnShowListener()
136
      {
137
      @Override
138
      public void onShow(DialogInterface dialog)
139
        {
140
        Button btnPositive = ((AlertDialog)dialog).getButton(Dialog.BUTTON_POSITIVE);
141
        btnPositive.setTextSize(TypedValue.COMPLEX_UNIT_PX, okSize);
142
        }
143
      });
144
145 85248b04 Leszek Koltunski
    return dialog;
146 fdec60a3 Leszek Koltunski
    }
147 a7a7cc9c Leszek Koltunski
  }