I have created a simple GUI in Qt as a part of an example. Now I am trying to load the project in Qt again. So I go to File -> Open File or Project. Then I navigate to the folder that associated .pro file is located and open it. Unfortunately, none of the .cpp and .ui files show up at this point. It just looks like a blank project with nothing in there. Even in this condition, I can compile and run the project without any issue. I have tried 2-3 more projects that I already have created in the past and I see the same thing. Am I missing something here? Should I add all other files individually every time (really do not think so)? I have also tried to open .user file in Qt, but it only shows XML file and nothing else. Thanks for your help
Content of .pro file:
#-------------------------------------------------
#
# Project created by QtCreator 2015-01-08T13:07:39
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = new
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp
HEADERS += mainwindow.h
FORMS += mainwindow.ui